1
0
Fork 0
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:
M66B 2023-03-20 14:56:58 +01:00
parent b4be7c35fa
commit 08de897941

View file

@ -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))