!89 修复CAD文件预览错误

Merge pull request !89 from 高雄/master
pull/87/MERGE
kailing 2023-04-18 06:36:50 +00:00 committed by Gitee
commit d3f92b175c
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,8 @@ public class DownloadUtils {
logger.error("忽略SSL证书异常:", e);
}
ReturnResponse<String> response = new ReturnResponse<>(0, "下载成功!!!", "");
if (!KkFileUtils.isAllowedUpload(fileName)) {
String realPath = getRelFilePath(fileName, fileAttribute);
if (!KkFileUtils.isAllowedUpload(realPath)) {
response.setCode(1);
response.setContent(null);
response.setMsg("下载失败:不支持的类型!" + urlStr);
@ -61,7 +62,6 @@ public class DownloadUtils {
response.setMsg(fileName);
return response;
}
String realPath = DownloadUtils.getRelFilePath(fileName, fileAttribute);
if(!StringUtils.hasText(realPath)){
response.setCode(1);
response.setContent(null);