mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 17:57:16 +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))
|
||||
return "application/vnd.openxmlformats-officedocument.presentationml.presentation";
|
||||
|
||||
if ("ppsx".equals(extension))
|
||||
return "application/vnd.openxmlformats-officedocument.presentationml.slideshow";
|
||||
|
||||
// OpenOffice
|
||||
|
||||
if ("odt".equals(extension))
|
||||
|
|
Loading…
Reference in a new issue