修正目录

streaming
Matthew 4 months ago
parent 4f1b8c3b49
commit 018ccea1f8

@ -1239,7 +1239,7 @@ public class MpMasterService extends Service {
if (destPathFile.exists()) {
File dataPath = new File(destPathFile, "data");
if (dataPath.exists()) {
File file = new File(destPathFile, "App.json");
File file = new File(dataPath, "App.json");
if (file.exists()) {
return false;
} else {
@ -1247,6 +1247,7 @@ public class MpMasterService extends Service {
}
} else {
existed = false;
try {
dataPath.mkdirs();
} catch (Exception ex) {

Loading…
Cancel
Save