diff --git a/src/org/thoughtcrime/securesms/components/AvatarImageView.java b/src/org/thoughtcrime/securesms/components/AvatarImageView.java index 7fc0a84898..c64a3a399a 100644 --- a/src/org/thoughtcrime/securesms/components/AvatarImageView.java +++ b/src/org/thoughtcrime/securesms/components/AvatarImageView.java @@ -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); }