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