Never sync more than keep days

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

@ -193,7 +193,7 @@ public class EntityFolder extends EntityOrder implements Serializable {
} }
JSONArray jargs = new JSONArray(); 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(keep_days);
jargs.put(download); jargs.put(download);
jargs.put(auto_delete); jargs.put(auto_delete);

Loading…
Cancel
Save