Add hasGroupsInCommon to Recipient content check.

This commit is contained in:
Alex Hart
2021-08-26 10:46:06 -03:00
parent 3f233ed39f
commit b41e602539

View File

@@ -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<Recipient> a, @NonNull List<Recipient> b) {