Revert "Show number unread inbox for accounts"

This reverts commit d21f9e6edb.
This commit is contained in:
M66B
2020-10-21 21:09:23 +02:00
parent f3921b7137
commit cb0b5ef7ff
4 changed files with 3 additions and 36 deletions

View File

@@ -23,7 +23,6 @@ import java.util.Objects;
public class TupleAccountEx extends EntityAccount {
public int unseen;
public int inbox;
public int identities; // synchronizing
public Long drafts;
@@ -33,7 +32,6 @@ public class TupleAccountEx extends EntityAccount {
TupleAccountEx other = (TupleAccountEx) obj;
return (super.equals(obj) &&
this.unseen == other.unseen &&
this.inbox == other.inbox &&
this.identities == other.identities &&
Objects.equals(this.drafts, other.drafts));
} else