Fix issue with non-contact avatar colors not updating.

fork-5.53.8
Greyson Parrelli 2019-10-19 12:15:14 -04:00
rodzic 5d137465e8
commit 9ba1391a1e
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -165,6 +165,7 @@ public final class AvatarImageView extends AppCompatImageView {
if (other == null) return false;
return other.recipient.equals(recipient) &&
other.recipient.getColor().equals(recipient.getColor()) &&
other.ready == ready &&
Objects.equals(other.contactPhoto, contactPhoto);
}