Fix note to self message detail text.

This commit is contained in:
mtang-signal
2024-04-16 15:36:46 -04:00
committed by Greyson Parrelli
parent 5f31f5966c
commit cd03da54d5
2 changed files with 8 additions and 2 deletions

View File

@@ -41,7 +41,7 @@ final class RecipientViewHolder extends RecyclerView.ViewHolder {
void bind(RecipientDeliveryStatus data) {
unidentifiedDeliveryIcon.setVisibility(TextSecurePreferences.isShowUnidentifiedDeliveryIndicatorsEnabled(itemView.getContext()) && data.isUnidentified() ? View.VISIBLE : View.GONE);
fromView.setText(data.getRecipient());
fromView.setText(data.getRecipient(), data.getRecipient().getDisplayName(itemView.getContext()), null, true, true);
avatar.setRecipient(data.getRecipient());
badge.setBadgeFromRecipient(data.getRecipient());