add pptx suoort

This commit is contained in:
Looly 2022-05-30 17:43:51 +08:00
parent 28a565da25
commit 811c1f1025

View File

@ -190,6 +190,9 @@ public class FileTypeUtil {
} else if ("docx".equalsIgnoreCase(extName)) { } else if ("docx".equalsIgnoreCase(extName)) {
// issue#I47JGH // issue#I47JGH
typeName = "docx"; typeName = "docx";
} else if ("pptx".equalsIgnoreCase(extName)) {
// issue#I5A0GO
typeName = "pptx";
} }
} }
return typeName; return typeName;