fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
2 changed files with 2 additions and 2 deletions
Showing only changes of commit daf0741f0f - Show all commits

View file

@ -128,7 +128,7 @@ export class AdminDialog extends IGBDialog {
const text: string = step.result;
const cmdName = text.split(' ')[0];
step.context.sendActivity(Messages[locale].working(cmdName));
await step.context.sendActivity(Messages[locale].working(cmdName));
let unknownCommand = false;
if (text === 'quit') {

View file

@ -252,7 +252,7 @@ export class KBService {
instanceId: number,
packageId: number
): Promise<GuaribasQuestion[]> {
const file = Fs.readFileSync(filePath, 'UCS-2');
const file = Fs.readFileSync(filePath, 'utf8');
const opts = {
delimiter: '\t'
};