From 250b3320a2698ceb8985087c2cbf82036bb48ead Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Thu, 6 Jan 2022 14:37:55 -0300 Subject: [PATCH] fix(basic.gblib): TALK TO bug after conversationId update. --- .deployment | 2 +- packages/core.gbapp/services/GBConversationalService.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.deployment b/.deployment index 433eef9a..db5488a1 100644 --- a/.deployment +++ b/.deployment @@ -1,2 +1,2 @@ [config] -command = bash ./deploy.sh \ No newline at end of file +command = deploy.cmd \ No newline at end of file diff --git a/packages/core.gbapp/services/GBConversationalService.ts b/packages/core.gbapp/services/GBConversationalService.ts index d7b0c02e..4bb12587 100644 --- a/packages/core.gbapp/services/GBConversationalService.ts +++ b/packages/core.gbapp/services/GBConversationalService.ts @@ -653,7 +653,7 @@ export class GBConversationalService { await step.context.sendActivity(currentText); } else { 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); } } }