mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 13:47:05 +02:00
Show number unread inbox for accounts
This commit is contained in:
@@ -23,6 +23,7 @@ import java.util.Objects;
|
||||
|
||||
public class TupleAccountEx extends EntityAccount {
|
||||
public int unseen;
|
||||
public int inbox;
|
||||
public int identities; // synchronizing
|
||||
public Long drafts;
|
||||
|
||||
@@ -32,6 +33,7 @@ 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
|
||||
|
||||
Reference in New Issue
Block a user