diff --git a/app/src/main/java/org/thoughtcrime/securesms/recipients/Recipient.java b/app/src/main/java/org/thoughtcrime/securesms/recipients/Recipient.java index 7caa2903c..0c9548c02 100644 --- a/app/src/main/java/org/thoughtcrime/securesms/recipients/Recipient.java +++ b/app/src/main/java/org/thoughtcrime/securesms/recipients/Recipient.java @@ -1187,7 +1187,8 @@ public class Recipient { Objects.equals(avatarColor, other.avatarColor) && Objects.equals(about, other.about) && Objects.equals(aboutEmoji, other.aboutEmoji) && - Objects.equals(extras, other.extras); + Objects.equals(extras, other.extras) && + hasGroupsInCommon == other.hasGroupsInCommon; } private static boolean allContentsAreTheSame(@NonNull List a, @NonNull List b) {