Fix issue with non-contact avatar colors not updating.

This commit is contained in:
Greyson Parrelli 2019-10-19 12:15:14 -04:00
parent 5d137465e8
commit 9ba1391a1e

View file

@ -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);
}