1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-31 20:25:38 +00:00

Workaround incorrect CSV mime types

This commit is contained in:
M66B 2021-10-21 14:40:19 +02:00
parent 562e5acede
commit 6d83a23a8a

View file

@ -167,6 +167,9 @@ public class EntityAttachment {
extension = extension.toLowerCase(Locale.ROOT);
// Fix types
if ("csv".equals(extension))
return "text/csv";
if ("dxf".equals(extension))
return "application/dxf";