From f40eae7b5918ca3f8b4a3910a37c2d7dbb98b210 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Mon, 8 Mar 2021 18:36:11 -0300 Subject: [PATCH] fix(basic.gblib): Step added to SEND FILE TO. --- 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 7b450ae0..0eacbb06 100644 --- a/packages/basic.gblib/services/DialogKeywords.ts +++ b/packages/basic.gblib/services/DialogKeywords.ts @@ -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); } /**