修正目录

streaming
Matthew 4 months ago
parent 4f1b8c3b49
commit 018ccea1f8

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

Loading…
Cancel
Save