Small fix

This commit is contained in:
M66B 2023-08-13 21:21:29 +02:00
parent fcfb1327cb
commit 59f3db62b6
1 changed files with 1 additions and 1 deletions

View File

@ -2389,7 +2389,7 @@ class Core {
EntityFolder inbox = db.folder().getFolderByType(account.id, EntityFolder.INBOX);
List<EntityFolder> children = db.folder().getChildFolders(inbox.id);
for (EntityFolder child : children)
if (!child.poll) {
if (!child.poll && EntityFolder.USER.equals(child.type)) {
count++;
db.folder().setFolderPoll(child.id, true);
EntityLog.log(context, "Fixed poll=" + child.name + ":" + child.type);