Optimized sync/donwload, improvements

This commit is contained in:
M66B
2018-09-16 18:07:26 +00:00
parent 5198802bc0
commit 26fdc79ad8
8 changed files with 240 additions and 157 deletions

View File

@@ -22,6 +22,7 @@ package eu.faircode.email;
public class TupleFolderEx extends EntityFolder {
public String accountName;
public int messages;
public int content;
public int unseen;
@Override
@@ -31,6 +32,7 @@ public class TupleFolderEx extends EntityFolder {
return (super.equals(obj) &&
(this.accountName == null ? other.accountName == null : accountName.equals(other.accountName)) &&
this.messages == other.messages &&
this.content == other.content &&
this.unseen == other.unseen);
} else
return false;