mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-26 23:50:58 +01:00
Never sync more than keep days
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user