mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 02:07:12 +00:00
Hard-code mime type for .ppsx
This commit is contained in:
parent
b4be7c35fa
commit
08de897941
1 changed files with 3 additions and 0 deletions
|
@ -280,6 +280,9 @@ public class EntityAttachment {
|
||||||
if ("pptx".equals(extension))
|
if ("pptx".equals(extension))
|
||||||
return "application/vnd.openxmlformats-officedocument.presentationml.presentation";
|
return "application/vnd.openxmlformats-officedocument.presentationml.presentation";
|
||||||
|
|
||||||
|
if ("ppsx".equals(extension))
|
||||||
|
return "application/vnd.openxmlformats-officedocument.presentationml.slideshow";
|
||||||
|
|
||||||
// OpenOffice
|
// OpenOffice
|
||||||
|
|
||||||
if ("odt".equals(extension))
|
if ("odt".equals(extension))
|
||||||
|
|
Loading…
Reference in a new issue