mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-29 21:34:44 +02:00
Workaround for incorrect audio/mid mime type
This commit is contained in:
@@ -182,9 +182,6 @@ public class EntityAttachment {
|
||||
if ("docx".equals(extension))
|
||||
return "application/vnd.openxmlformats-officedocument.wordprocessingml.document";
|
||||
|
||||
if ("mid".equals(extension) || "midi".equals(extension))
|
||||
return "audio/midi";
|
||||
|
||||
if ("xls".equals(extension))
|
||||
return "application/vnd.ms-excel";
|
||||
|
||||
@@ -207,6 +204,9 @@ public class EntityAttachment {
|
||||
if ("text/plain".equals(type) && "ovpn".equals(extension))
|
||||
return "application/x-openvpn-profile";
|
||||
|
||||
if ("audio/mid".equals(type))
|
||||
return "audio/midi";
|
||||
|
||||
// https://www.rfc-editor.org/rfc/rfc3555.txt
|
||||
if ("video/jpeg".equals(type))
|
||||
return "image/jpeg";
|
||||
|
||||
Reference in New Issue
Block a user