mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-28 03:46:00 +01:00
Prevent NPE
This commit is contained in:
@@ -50,11 +50,11 @@ public class TupleIdentityView {
|
||||
if (obj instanceof TupleIdentityView) {
|
||||
TupleIdentityView other = (TupleIdentityView) obj;
|
||||
return (this.id.equals(other.id) &&
|
||||
this.name.equals(other.name) &&
|
||||
this.email.equals(other.email) &&
|
||||
Objects.equals(this.name, other.name) &&
|
||||
Objects.equals(this.email, other.email) &&
|
||||
Objects.equals(this.display, other.display) &&
|
||||
Objects.equals(this.color, other.color) &&
|
||||
this.synchronize.equals(other.synchronize));
|
||||
Objects.equals(this.synchronize, other.synchronize));
|
||||
} else
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user