Add hasGroupsInCommon to Recipient content check.

fork-5.53.8
Alex Hart 2021-08-26 10:46:06 -03:00
rodzic 3f233ed39f
commit b41e602539
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -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) {