Full addresses

This commit is contained in:
M66B 2021-02-27 13:16:27 +01:00
parent 4fba4bce6e
commit d613a953aa
1 changed files with 3 additions and 3 deletions

View File

@ -1818,10 +1818,10 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
int tos = (message.to == null ? 0 : message.to.length);
boolean hasChannel = (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O);
Spanned submitter = formatAddresses(message.submitter, full);
Spanned from = formatAddresses(message.senders, full);
Spanned submitter = formatAddresses(message.submitter, true);
Spanned from = formatAddresses(message.senders, true);
Spanned to = formatAddresses(message.to, full);
Spanned replyto = formatAddresses(message.reply, full);
Spanned replyto = formatAddresses(message.reply, true);
Spanned cc = formatAddresses(message.cc, full);
Spanned bcc = formatAddresses(message.bcc, full);