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

@ -7,6 +7,7 @@
### 🐣新特性
* 【extra 】 mail增加writeTimeout参数支持issue#2355@Github
* 【core 】 FileTypeUtil增加pptx扩展名支持issue#I5A0GO@Gitee
### 🐞Bug修复
* 【core 】 修复NumberUtil.isXXX空判断错误issue#2356@Github

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;