Hard-code mime type for .ppsx

This commit is contained in:
M66B 2023-03-20 14:56:58 +01:00
parent b4be7c35fa
commit 08de897941
1 changed files with 3 additions and 0 deletions

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