Skip to content

Commit

Permalink
Fix issue with non-contact avatar colors not updating.
Browse files Browse the repository at this point in the history
  • Loading branch information
greyson-signal committed Oct 19, 2019
1 parent 5d13746 commit 9ba1391
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ public boolean equals(@Nullable RecipientContactPhoto other) {
if (other == null) return false;

return other.recipient.equals(recipient) &&
other.recipient.getColor().equals(recipient.getColor()) &&
other.ready == ready &&
Objects.equals(other.contactPhoto, contactPhoto);
}
Expand Down

0 comments on commit 9ba1391

Please sign in to comment.