From 9ba1391a1efe7787b5042a3bb42aba5750f29bb1 Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Sat, 19 Oct 2019 12:15:14 -0400 Subject: [PATCH] Fix issue with non-contact avatar colors not updating. --- src/org/thoughtcrime/securesms/components/AvatarImageView.java | 1 + 1 file changed, 1 insertion(+) 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); }