mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-22 22:21:18 +00:00
Small fix
This commit is contained in:
parent
8e4c91fdbe
commit
e6ac85b7be
1 changed files with 2 additions and 1 deletions
|
@ -200,7 +200,8 @@ public class EntityAttachment {
|
||||||
Objects.equals(this.encryption, other.encryption) &&
|
Objects.equals(this.encryption, other.encryption) &&
|
||||||
Objects.equals(this.size, other.size) &&
|
Objects.equals(this.size, other.size) &&
|
||||||
Objects.equals(this.progress, other.progress) &&
|
Objects.equals(this.progress, other.progress) &&
|
||||||
this.available.equals(other.available));
|
this.available.equals(other.available) &&
|
||||||
|
Objects.equals(this.error, other.error));
|
||||||
} else
|
} else
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue