Never sync more than keep days

pull/161/head
M66B 5 years ago
parent b8d2dc67d1
commit 505fdc241a

@ -193,7 +193,7 @@ public class EntityFolder extends EntityOrder implements Serializable {
}
JSONArray jargs = new JSONArray();
jargs.put(initialize == 0 ? days : Math.min(keep_days, initialize));
jargs.put(initialize == 0 ? Math.min(days, keep_days) : Math.min(keep_days, initialize));
jargs.put(keep_days);
jargs.put(download);
jargs.put(auto_delete);

Loading…
Cancel
Save