fix(core.gbapp): Missing await inserted on sendToMobile.
This commit is contained in:
parent
f976578cda
commit
43e70bbe41
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ export class GBConversationalService {
|
|||
}
|
||||
|
||||
public async sendToMobile(min: GBMinInstance, mobile: string, message: string) {
|
||||
min.whatsAppDirectLine.sendToDevice(mobile, message);
|
||||
await min.whatsAppDirectLine.sendToDevice(mobile, message);
|
||||
}
|
||||
|
||||
public static async getAudioBufferFromText(speechKey, cloudRegion, text, locale): Promise<string> {
|
||||
|
|
Loading…
Add table
Reference in a new issue