fix(basic.gblib): Databases. #392 @othonlima.
This commit is contained in:
parent
5dd2cc3a29
commit
1e9809f678
2 changed files with 7 additions and 7 deletions
|
@ -292,10 +292,10 @@ export class AdminDialog extends IGBDialog {
|
||||||
let skipError = false;
|
let skipError = false;
|
||||||
if (filename === null || filename === '') {
|
if (filename === null || filename === '') {
|
||||||
await min.conversationalService.sendText(min, step, `Starting publishing for ${botId} packages...`);
|
await min.conversationalService.sendText(min, step, `Starting publishing for ${botId} packages...`);
|
||||||
packages.push(`${botId}.gbkb`);
|
|
||||||
packages.push(`${botId}.gbtheme`);
|
|
||||||
packages.push(`${botId}.gbdialog`);
|
|
||||||
packages.push(`${botId}.gbot`);
|
packages.push(`${botId}.gbot`);
|
||||||
|
packages.push(`${botId}.gbtheme`);
|
||||||
|
packages.push(`${botId}.gbkb`);
|
||||||
|
packages.push(`${botId}.gbdialog`);
|
||||||
skipError = true;
|
skipError = true;
|
||||||
} else {
|
} else {
|
||||||
packages.push(filename);
|
packages.push(filename);
|
||||||
|
|
|
@ -642,10 +642,10 @@ export class GBVMService extends GBService {
|
||||||
|
|
||||||
public static normalizeQuotes(text: any) {
|
public static normalizeQuotes(text: any) {
|
||||||
|
|
||||||
text = text.replace(/\"/gm, '"');
|
text = text.replace(/\"/gm, '`');
|
||||||
text = text.replace(/\¨/gm, '"');
|
text = text.replace(/\¨/gm, '`');
|
||||||
text = text.replace(/\“/gm, '"');
|
text = text.replace(/\“/gm, '`');
|
||||||
text = text.replace(/\”/gm, '"');
|
text = text.replace(/\”/gm, '`');
|
||||||
text = text.replace(/\‘/gm, "'");
|
text = text.replace(/\‘/gm, "'");
|
||||||
text = text.replace(/\’/gm, "'");
|
text = text.replace(/\’/gm, "'");
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue