Show the correct sender name in mailing list messages

This commit is contained in:
Hocuri 2021-02-10 20:57:33 +01:00 committed by bjoern
parent 406bb9a6ee
commit 3b8f3e7628
3 changed files with 3 additions and 3 deletions

View file

@ -159,7 +159,7 @@ public class QuoteView extends FrameLayout implements RecipientForeverObserver {
quoteBarView.setBackgroundColor(getForwardedColor());
} else {
authorView.setVisibility(VISIBLE);
authorView.setText(contact.getDisplayName());
authorView.setText(quotedMsg.getSenderName(contact));
authorView.setTextColor(contact.getArgbColor());
quoteBarView.setBackgroundColor(contact.getArgbColor());
}