Browse Source

Respect repositoryBackupInterval when deciding whether to perform backup during auto-update. Issue #10

split-DB
catbref 4 years ago
parent
commit
f6216b9745
  1. 3
      src/main/java/org/qortal/controller/AutoUpdate.java

3
src/main/java/org/qortal/controller/AutoUpdate.java

@ -214,7 +214,8 @@ public class AutoUpdate extends Thread {
return false; // failed - try another repo return false; // failed - try another repo
} }
// Give repository a chance to backup in case things go badly wrong // Give repository a chance to backup in case things go badly wrong (if enabled)
if (Settings.getInstance().getRepositoryBackupInterval() > 0)
RepositoryManager.backup(true); RepositoryManager.backup(true);
// Call ApplyUpdate to end this process (unlocking current JAR so it can be replaced) // Call ApplyUpdate to end this process (unlocking current JAR so it can be replaced)

Loading…
Cancel
Save