Browse Source

v4.3.0代码同步

dengsixing 2 years ago
parent
commit
c192d8cdf8

+ 1 - 1
src/main/java/com/fdkankan/scene/service/impl/DownloadTourVideoServiceImpl.java

@@ -105,7 +105,7 @@ public class DownloadTourVideoServiceImpl extends ServiceImpl<IDownloadTourVideo
         String destPath = null;
         try {
             String destFileName = UUID.randomUUID().toString() + ".mp4";
-            destPath = ConstantFilePath.SCENE_V4_PATH + downloadTourVideo.getNum() + "tour/" + destFileName;
+            destPath = ConstantFilePath.SCENE_V4_PATH + downloadTourVideo.getNum() + "/tour/" + destFileName;
             File destFile = new File(destPath);
             if(!destFile.getParentFile().exists()){
                 destFile.getParentFile().mkdir();