Skip to content

Commit

Permalink
fix(all): Corrected mobile number to WhatsApp while output md.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Oct 12, 2021
1 parent f0ad1ae commit 0fda382
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/basic.gblib/services/DialogKeywords.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit 0fda382

Please sign in to comment.