Show total size when sorting on size

This commit is contained in:
M66B
2019-04-05 08:57:50 +02:00
parent 423d026cad
commit 6c0183d8ea
3 changed files with 14 additions and 2 deletions

View File

@@ -39,6 +39,7 @@ public class TupleMessageEx extends EntityMessage {
public int attachments;
public int drafts;
public int visible;
public Long totalSize;
@Ignore
public boolean duplicate;
@@ -62,6 +63,7 @@ public class TupleMessageEx extends EntityMessage {
this.attachments == other.attachments &&
this.drafts == other.drafts &&
this.visible == other.visible &&
Objects.equals(this.totalSize, other.totalSize) &&
this.duplicate == other.duplicate);
}
return false;
@@ -83,6 +85,7 @@ public class TupleMessageEx extends EntityMessage {
this.unflagged == other.unflagged &&
this.attachments == other.attachments &&
this.visible == other.visible &&
Objects.equals(this.totalSize, other.totalSize) &&
this.duplicate == other.duplicate);
}
return false;