diff --git a/src/Contacts/Contact.m b/src/Contacts/Contact.m index 43152d286..9a96bf95c 100644 --- a/src/Contacts/Contact.m +++ b/src/Contacts/Contact.m @@ -293,6 +293,10 @@ NS_ASSUME_NONNULL_BEGIN hash = hash ^ phoneNumber.toE164.hash; } + for (NSString *email in self.emails) { + hash = hash ^ email.hash; + } + return hash; }