|
@@ -213,6 +213,7 @@ public class ScrbServiceImpl implements IScrbService {
|
|
|
ScenePlusExt scenePlusExtNew = JSON.parseObject(scenePlusExtStr, ScenePlusExt.class);
|
|
|
ScenePlusExt scenePlusExt = scenePlusExtService.getByScenePlusId(scenePlus.getId());
|
|
|
scenePlusExt.setAlgorithmTime(scenePlusExtNew.getAlgorithmTime());
|
|
|
+ scenePlusExt.setVideos(scenePlusExtNew.getVideos());
|
|
|
scenePlusExtService.updateById(scenePlusExt);
|
|
|
|
|
|
SceneEditInfo sceneEditInfo = sceneEditInfoService.getByScenePlusId(scenePlus.getId());
|
|
@@ -223,6 +224,7 @@ public class ScrbServiceImpl implements IScrbService {
|
|
|
String sceneJsonPath = String.format(UploadFilePath.DATA_VIEW_PATH, num) + "scene.json";
|
|
|
if(fYunFileService.fileExist(sceneJsonPath)){
|
|
|
String sceneJsonStr = fYunFileService.getFileContent(sceneJsonPath);
|
|
|
+ sceneJsonStr = sceneJsonStr.replaceAll("https://4dkk.4dage.com/", "");
|
|
|
JSONObject sceneJson = JSON.parseObject(sceneJsonStr);
|
|
|
sceneJson.replace("title", scenePlusNew.getTitle());
|
|
|
sceneJsonStr = sceneJson.toJSONString();
|