mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-02 02:50:56 +01:00
Show body size
This commit is contained in:
@@ -118,6 +118,7 @@ public class EntityMessage implements Serializable {
|
||||
public Boolean raw;
|
||||
public String subject;
|
||||
public Long size;
|
||||
public Long total;
|
||||
@NonNull
|
||||
public Integer attachments = 0; // performance
|
||||
@NonNull
|
||||
@@ -279,6 +280,7 @@ public class EntityMessage implements Serializable {
|
||||
Objects.equals(this.raw, other.raw) &&
|
||||
Objects.equals(this.subject, other.subject) &&
|
||||
Objects.equals(this.size, other.size) &&
|
||||
Objects.equals(this.total, other.total) &&
|
||||
Objects.equals(this.attachments, other.attachments) &&
|
||||
this.content == other.content &&
|
||||
Objects.equals(this.plain_only, other.plain_only) &&
|
||||
|
||||
Reference in New Issue
Block a user