Fixed updating folder group unread count

This commit is contained in:
M66B 2024-03-03 08:12:15 +01:00
parent c986de943d
commit a2aee58f4a
1 changed files with 3 additions and 1 deletions

View File

@ -87,7 +87,9 @@ public class TupleFolderEx extends EntityFolder implements Serializable {
this.unseen == other.unseen &&
this.unexposed == other.unexposed &&
this.flagged == other.flagged &&
this.executing == other.executing);
this.executing == other.executing &&
this.indentation == other.indentation &&
this.childs_unseen == other.childs_unseen);
} else
return false;
}