fix: Use ogg format for Telegram audio messages (#8505)

Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
This commit is contained in:
Mazen Khalil
2023-12-16 22:55:47 +03:00
committed by GitHub
parent e5c8a68a76
commit 552d967c81

View File

@@ -497,7 +497,11 @@ export default {
return `draft-${this.conversationIdByRoute}-${this.replyType}`;
},
audioRecordFormat() {
if (this.isAWhatsAppChannel || this.isAPIInbox) {
if (
this.isAWhatsAppChannel ||
this.isAPIInbox ||
this.isATelegramChannel
) {
return AUDIO_FORMATS.OGG;
}
return AUDIO_FORMATS.WAV;