From 0fda382a43b6752a6d09dd6d1f7d47d186636a73 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Tue, 12 Oct 2021 16:37:34 -0300 Subject: [PATCH] fix(all): Corrected mobile number to WhatsApp while output md. --- packages/basic.gblib/services/DialogKeywords.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/basic.gblib/services/DialogKeywords.ts b/packages/basic.gblib/services/DialogKeywords.ts index f0af8213..ea02cdb7 100644 --- a/packages/basic.gblib/services/DialogKeywords.ts +++ b/packages/basic.gblib/services/DialogKeywords.ts @@ -316,8 +316,8 @@ export class DialogKeywords { */ public async sendFile(step, filename, caption) { const mobile = await this.userMobile(step); - GBLog.info(`BASIC: SEND FILE (current: ${mobile}', filename '${filename}'.`); - return await this.internalSendFile(step, null, filename, caption); + GBLog.info(`BASIC: SEND FILE (current: ${mobile}, filename '${filename}'.`); + return await this.internalSendFile(step, mobile, filename, caption); } /**