Workaround wrong mime types for mp3

This commit is contained in:
M66B 2021-08-20 12:20:20 +02:00
parent fbfb79c4d5
commit 9b93497ae4
1 changed files with 3 additions and 0 deletions

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";