Fix NPE when rendering group member item.

fork-5.53.8
Greyson Parrelli 2021-11-05 15:02:19 -04:00
rodzic e5b628b467
commit a37b89feaf
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -215,7 +215,10 @@ final class GroupMemberListAdapter extends LifecycleRecyclerAdapter<GroupMemberL
void bindImageAndText(@NonNull Recipient recipient, @NonNull String displayText, @Nullable String about) {
this.recipient.setText(displayText);
this.avatar.setRecipient(recipient);
this.badge.setBadgeFromRecipient(recipient);
if (this.badge != null) {
this.badge.setBadgeFromRecipient(recipient);
}
if (this.about != null) {
this.about.setText(about);