mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-31 10:01:22 +01:00
Default no download for archive, trash and junk
This commit is contained in:
@@ -524,10 +524,12 @@ public class FragmentAccount extends FragmentEx {
|
||||
DB db = DB.getInstance(context);
|
||||
EntityFolder folder = db.folder().getFolderByName(id, ifolder.getFullName());
|
||||
if (folder == null) {
|
||||
int sync = EntityFolder.SYSTEM_FOLDER_SYNC.indexOf(type);
|
||||
folder = new EntityFolder();
|
||||
folder.name = ifolder.getFullName();
|
||||
folder.type = (type == null ? EntityFolder.USER : type);
|
||||
folder.synchronize = (type != null && EntityFolder.SYSTEM_FOLDER_SYNC.contains(type));
|
||||
folder.synchronize = (sync >= 0);
|
||||
folder.download = (sync < 0 ? true : EntityFolder.SYSTEM_FOLDER_DOWNLOAD.get(sync));
|
||||
folder.sync_days = EntityFolder.DEFAULT_SYNC;
|
||||
folder.keep_days = EntityFolder.DEFAULT_KEEP;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user