fix(basic.gblib): TALK TO bug after conversationId update.

This commit is contained in:
Rodrigo Rodriguez 2022-01-06 14:37:55 -03:00
parent d8e950c91d
commit 250b3320a2
2 changed files with 2 additions and 2 deletions

View file

@ -1,2 +1,2 @@
[config] [config]
command = bash ./deploy.sh command = deploy.cmd

View file

@ -653,7 +653,7 @@ export class GBConversationalService {
await step.context.sendActivity(currentText); await step.context.sendActivity(currentText);
} else { } else {
GBLog.info(`Sending .MD file to mobile: ${mobile}.`); GBLog.info(`Sending .MD file to mobile: ${mobile}.`);
await this.sendToMobile(min, mobile, currentText, step.context.activity.conversation.id); await this.sendToMobile(min, mobile, currentText, null);
} }
} }
} }