diff --git a/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue b/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue index 81cc294b3..4199be673 100644 --- a/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue +++ b/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue @@ -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;