Show account name in unified inbox

This commit is contained in:
M66B
2018-08-22 16:37:10 +00:00
parent 82855d9a1e
commit ea66c6100e
5 changed files with 46 additions and 15 deletions

View File

@@ -20,6 +20,7 @@ package eu.faircode.email;
*/
public class TupleMessageEx extends EntityMessage {
public String accountName;
public String folderName;
public String folderType;
public int count;
@@ -31,6 +32,8 @@ public class TupleMessageEx extends EntityMessage {
if (obj instanceof TupleMessageEx) {
TupleMessageEx other = (TupleMessageEx) obj;
return (super.equals(obj) &&
(this.accountName == null ? other.accountName == null : this.accountName.equals(other.accountName)) &&
this.folderName.equals(other.folderName) &&
this.folderType.equals(other.folderType) &&
this.count == other.count &&
this.unseen == other.unseen &&