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:
parent
562e5acede
commit
6d83a23a8a
1 changed files with 3 additions and 0 deletions
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue