mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 10:47:28 +00:00
Prevent crash
This commit is contained in:
parent
e03cc71697
commit
3c5f0e1b25
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ public class TupleFolderView {
|
|||
public boolean equals(@Nullable Object obj) {
|
||||
if (obj instanceof TupleFolderView) {
|
||||
TupleFolderView other = (TupleFolderView) obj;
|
||||
return (this.id.equals(other.id) &&
|
||||
return (Objects.equals(this.id, other.id) &&
|
||||
Objects.equals(this.account, other.account) &&
|
||||
this.name.equals(other.name) &&
|
||||
this.type.equals(other.type) &&
|
||||
|
|
Loading…
Reference in a new issue