From b41e602539784747356467b6440084c6f4db8588 Mon Sep 17 00:00:00 2001 From: Alex Hart Date: Thu, 26 Aug 2021 10:46:06 -0300 Subject: [PATCH] Add hasGroupsInCommon to Recipient content check. --- .../java/org/thoughtcrime/securesms/recipients/Recipient.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) {