fix(basic.gblib): Using mobile instead of step on SEND FILE TO.

This commit is contained in:
Rodrigo Rodriguez 2021-03-08 19:30:17 -03:00
parent f93e468a59
commit 51a6d557ae

View file

@ -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);
}
/**