Reverse sender/recipient in outgoing folders

This commit is contained in:
M66B
2020-10-12 19:53:04 +02:00
parent be7fc3a0da
commit 963d147574
2 changed files with 3 additions and 1 deletions

View File

@@ -1021,7 +1021,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
ivSigned.clearColorFilter();
ivEncrypted.setVisibility(message.encrypted > 0 ? View.VISIBLE : View.GONE);
if (show_recipients && recipients != null && recipients.length > 0)
tvFrom.setText(context.getString(R.string.title_from_to,
tvFrom.setText(context.getString(
outgoing && viewType != ViewType.THREAD ? R.string.title_to_from : R.string.title_from_to,
MessageHelper.formatAddresses(senders, name_email, false),
MessageHelper.formatAddresses(recipients, name_email, false)));
else