1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-04 10:39:25 +00:00

Small improvement

This commit is contained in:
M66B 2024-12-26 10:18:31 +01:00
parent 881ed09667
commit 5220537808

View file

@ -1461,13 +1461,13 @@ public class FragmentAccount extends FragmentBase {
folder.setSpecials(account);
folder.id = db.folder().insertFolder(folder);
EntityLog.log(context, "Added folder=" + folder.name + ":" + folder.type);
if (folder.synchronize)
if (folder.synchronize && account.synchronize)
EntityOperation.sync(context, folder.id, true);
} else {
EntityLog.log(context, "Updated folder=" + folder.name + ":" + folder.type +
" existing=" + existing.name + ":" + existing.type);
db.folder().setFolderType(existing.id, folder.type);
if (folder.synchronize &&
if (folder.synchronize && account.synchronize &&
!Objects.equals(existing.type, folder.type)) {
EntityLog.log(context, "Updated folder=" + folder.name + ":" + folder.type);
db.folder().setFolderSynchronize(existing.id, true);