|
@@ -54,7 +54,7 @@ public class DownService implements IDownService {
|
|
}
|
|
}
|
|
Integer sceneType = scenePro !=null ? scenePro.getSceneSource() : plus.getSceneSource();
|
|
Integer sceneType = scenePro !=null ? scenePro.getSceneSource() : plus.getSceneSource();
|
|
log.info("checkDownLoad--sceneType:{},isObj:{}",sceneType,isObj);
|
|
log.info("checkDownLoad--sceneType:{},isObj:{}",sceneType,isObj);
|
|
- if(sceneType == 4 && isObj !=1){ //深时场景
|
|
|
|
|
|
+ if((sceneType == 4 || sceneType == 5 ) && isObj !=1){ //深时场景
|
|
return SSCheckDownload(sceneNum);
|
|
return SSCheckDownload(sceneNum);
|
|
}
|
|
}
|
|
SceneDownloadLog sceneDownloadLog;
|
|
SceneDownloadLog sceneDownloadLog;
|
|
@@ -123,7 +123,7 @@ public class DownService implements IDownService {
|
|
|
|
|
|
Integer sceneType = scenePro !=null ? scenePro.getSceneSource() : scenePlus.getSceneSource();
|
|
Integer sceneType = scenePro !=null ? scenePro.getSceneSource() : scenePlus.getSceneSource();
|
|
log.info("down--sceneType:{},isObj:{}",sceneType,isObj);
|
|
log.info("down--sceneType:{},isObj:{}",sceneType,isObj);
|
|
- if(sceneType == 4 && isObj !=1){ //深时场景
|
|
|
|
|
|
+ if((sceneType == 4 || sceneType == 5 )&& isObj !=1){ //深时场景
|
|
return SSDownload(sceneNum,userId);
|
|
return SSDownload(sceneNum,userId);
|
|
}
|
|
}
|
|
|
|
|
|
@@ -164,7 +164,7 @@ public class DownService implements IDownService {
|
|
}
|
|
}
|
|
Integer sceneType = scenePro !=null ? scenePro.getSceneSource() : scenePlus.getSceneSource();
|
|
Integer sceneType = scenePro !=null ? scenePro.getSceneSource() : scenePlus.getSceneSource();
|
|
log.info("downloadProcess--sceneType:{},isObj:{}",sceneType,isObj);
|
|
log.info("downloadProcess--sceneType:{},isObj:{}",sceneType,isObj);
|
|
- if(sceneType == 4 && isObj !=1){ //深时场景
|
|
|
|
|
|
+ if((sceneType == 4 || sceneType == 5 ) && isObj !=1){ //深时场景
|
|
return SSDownloadProcess(sceneNum);
|
|
return SSDownloadProcess(sceneNum);
|
|
}
|
|
}
|
|
String redisKey = RedisKey.PREFIX_DOWNLOAD_PROGRESS;
|
|
String redisKey = RedisKey.PREFIX_DOWNLOAD_PROGRESS;
|