1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-23 22:51:02 +00:00

Workaround wrong mime types for mp3

This commit is contained in:
M66B 2021-08-20 12:20:20 +02:00
parent fbfb79c4d5
commit 9b93497ae4

View file

@ -179,6 +179,9 @@ public class EntityAttachment {
if ("docx".equals(extension))
return "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
if ("mp3".equals(extension))
return "audio/mpeg";
if ("xls".equals(extension))
return "application/vnd.ms-excel";