|
@@ -53,6 +53,10 @@ public class DownSceneServiceImpl implements IDownSceneService {
|
|
|
JSONObject processObj = JSONObject.parseObject(JSONObject.toJSONString(processResult.getData()));
|
|
|
String processUrl = processObj.getString("url");
|
|
|
Integer percent = processObj.getInteger("percent");
|
|
|
+ Integer processStatus = processObj.getInteger("status");
|
|
|
+ if(processStatus == 1003){
|
|
|
+ return new DownSceneDto(processUrl,percent,-1);
|
|
|
+ }
|
|
|
|
|
|
return new DownSceneDto(processUrl,percent);
|
|
|
}
|