Skip to content

Commit

Permalink
fix: 修复文件类型处理错误
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles7c committed May 3, 2024
1 parent def831f commit 9b60e24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public enum FileTypeEnum implements IBaseEnum<Integer> {
/**
* 图片
*/
IMAGE(2, "图片", List.of("jpg", "png", "gif", "bmp", "webp", "ico", "psd", "tiff", "dwg", "jxr", "apng", "xcf")),
IMAGE(2, "图片", List.of("jpg", "jpeg", "png", "gif", "bmp", "webp", "ico", "psd", "tiff", "dwg", "jxr", "apng", "xcf")),

/**
* 文档
Expand Down

0 comments on commit 9b60e24

Please sign in to comment.