mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 21:58:52 +02:00
Sent messages folder / account list
This commit is contained in:
@@ -25,6 +25,7 @@ public class TupleAccountEx extends EntityAccount {
|
||||
public int unseen;
|
||||
public int identities; // synchronizing
|
||||
public Long drafts;
|
||||
public Long sent;
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
@@ -33,7 +34,8 @@ public class TupleAccountEx extends EntityAccount {
|
||||
return (super.equals(obj) &&
|
||||
this.unseen == other.unseen &&
|
||||
this.identities == other.identities &&
|
||||
Objects.equals(this.drafts, other.drafts));
|
||||
Objects.equals(this.drafts, other.drafts) &&
|
||||
Objects.equals(this.sent, other.sent));
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user