|
@@ -1797,7 +1797,13 @@ public class SceneFileBuildServiceImpl extends ServiceImpl<ISceneFileBuildMapper
|
|
|
base64.decode(cipher));
|
|
|
String restr = new String(res, "UTF-8");
|
|
|
log.info("upload-params解密结果:" + restr);
|
|
|
+
|
|
|
+ //这里增加判断,如果是日志文件,不做任何处理,直接返回
|
|
|
+ if(restr.contains("normal")){
|
|
|
+ return ResultData.ok();
|
|
|
+ }
|
|
|
String[] strArr = restr.split(SPLICE);
|
|
|
+
|
|
|
if (strArr.length != 6) {
|
|
|
throw new BusinessException(ErrorCode.PARAM_REQUIRED);
|
|
|
}
|