diff --git a/app/src/main/java/eu/faircode/email/TupleFolderEx.java b/app/src/main/java/eu/faircode/email/TupleFolderEx.java index 1e059ed8a8..bfef658aa0 100644 --- a/app/src/main/java/eu/faircode/email/TupleFolderEx.java +++ b/app/src/main/java/eu/faircode/email/TupleFolderEx.java @@ -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; }