Skip to content

Commit

Permalink
fix(basic.gblib): Step added to SEND FILE TO.
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigorodriguez committed Mar 8, 2021
1 parent 551f80b commit f40eae7
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 @@ -132,8 +132,8 @@ export class DialogKeywords {
* @example SEND FILE TO "+199988887777", "image.jpg"
*
*/
public async sendFileTo(mobile, filename, caption) {
return await this.internalSendFile(null, mobile, filename, caption);
public async sendFileTo(step, mobile, filename, caption) {
return await this.internalSendFile(step, mobile, filename, caption);
}

/**
Expand Down

0 comments on commit f40eae7

Please sign in to comment.