Skip to content

Commit

Permalink
fix(basic.gblib): Using mobile instead of step on SEND FILE TO.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Mar 8, 2021
1 parent f93e468 commit 51a6d55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/basic.gblib/services/DialogKeywords.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class DialogKeywords {
*/
public async sendFileTo(step, mobile, filename, caption) {
GBLog.info(`BASIC: SEND FILE TO '${mobile}', filename '${filename}'.`);
return await this.internalSendFile(step, mobile, filename, caption);
return await this.internalSendFile(null, mobile, filename, caption);
}

/**
Expand Down

0 comments on commit 51a6d55

Please sign in to comment.