Small fix

This commit is contained in:
M66B 2019-07-23 19:50:53 +02:00
parent 0a212e93af
commit ca6827c266
1 changed files with 3 additions and 0 deletions

View File

@ -361,6 +361,9 @@ public class FragmentFolder extends FragmentBase {
boolean should = args.getBoolean("should");
if (TextUtils.isEmpty(display))
display = null;
int sync_days = (TextUtils.isEmpty(sync) ? EntityFolder.DEFAULT_SYNC : Integer.parseInt(sync));
int keep_days = (TextUtils.isEmpty(keep) ? EntityFolder.DEFAULT_KEEP : Integer.parseInt(keep));
if (keep_days < sync_days)