diff --git a/src/main/java/org/qortal/settings/Settings.java b/src/main/java/org/qortal/settings/Settings.java index a2a83cc9..9bd01bb5 100644 --- a/src/main/java/org/qortal/settings/Settings.java +++ b/src/main/java/org/qortal/settings/Settings.java @@ -91,9 +91,9 @@ public class Settings { /** Whether to show a notification when we backup repository. */ private boolean showBackupNotification = false; /** Minimum time between repository maintenance attempts (ms) */ - private long repositoryMaintenanceMinInterval = 7 * 24 * 60 * 60 * 1000L; // 7 days (ms) default + private long repositoryMaintenanceMinInterval = 3 * 24 * 60 * 60 * 1000L; // 3 days (ms) default /** Maximum time between repository maintenance attempts (ms) (0 if disabled). */ - private long repositoryMaintenanceMaxInterval = 30 * 24 * 60 * 60 * 1000L; // 30 days (ms) default + private long repositoryMaintenanceMaxInterval = 14 * 24 * 60 * 60 * 1000L; // 14 days (ms) default /** Whether to show a notification when we run scheduled maintenance. */ private boolean showMaintenanceNotification = false; /** How long between repository checkpoints (ms). */