Sent messages folder / account list

This commit is contained in:
M66B
2021-07-11 21:04:47 +02:00
parent 40d5da8fa5
commit 74b7a93ba4
4 changed files with 23 additions and 3 deletions

View File

@@ -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;
}