diff --git a/ts/types/Attachment.ts b/ts/types/Attachment.ts index a5ea928fa..d3c0d5c08 100644 --- a/ts/types/Attachment.ts +++ b/ts/types/Attachment.ts @@ -982,6 +982,8 @@ export const getFileExtension = ( switch (attachment.contentType) { case 'video/quicktime': return 'mov'; + case 'audio/mpeg': + return 'mp3'; default: return attachment.contentType.split('/')[1]; }