add pptx ext name support

This commit is contained in:
Looly
2022-05-30 17:45:37 +08:00
parent 60a068db3f
commit 6b7b2f35b8
2 changed files with 4 additions and 0 deletions

View File

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