Merge pull request #1221 from mbap-dev/fix-audio

Fix audio send duplicate from chatwoot.
This commit is contained in:
Davidson Gomes 2025-02-10 12:52:48 -03:00 committed by GitHub
commit e5137e1aac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1106,7 +1106,7 @@ export class ChatwootService {
sendTelemetry('/message/sendWhatsAppAudio');
const messageSent = await waInstance?.audioWhatsapp(data, true);
const messageSent = await waInstance?.audioWhatsapp(data, null, true);
return messageSent;
}