mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-26 15:40:59 +01:00
Store attachments as files
This commit is contained in:
@@ -54,7 +54,7 @@ public class EntityAttachment {
|
||||
public String type;
|
||||
public Integer size;
|
||||
public Integer progress;
|
||||
public byte[] content;
|
||||
public String filename;
|
||||
|
||||
@Ignore
|
||||
BodyPart part;
|
||||
@@ -69,7 +69,7 @@ public class EntityAttachment {
|
||||
this.type.equals(other.type) &&
|
||||
(this.size == null ? other.size == null : this.size.equals(other.size)) &&
|
||||
(this.progress == null ? other.progress == null : this.progress.equals(other.progress)) &&
|
||||
(this.content == null ? other.content == null : other.content != null));
|
||||
(this.filename == null ? other.filename == null : this.filename.equals(other.filename)));
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user