mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 10:17:18 +00:00
Fixed updating folder group unread count
This commit is contained in:
parent
c986de943d
commit
a2aee58f4a
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue