mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 00:53:26 +02:00
Sort outgoing messages on recipient
This commit is contained in:
@@ -874,8 +874,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
boolean outbox = EntityFolder.OUTBOX.equals(message.folderType);
|
||||
boolean outgoing = isOutgoing(message);
|
||||
boolean reverse = (outgoing &&
|
||||
(viewType != ViewType.THREAD || !threading) &&
|
||||
!show_recipients && !"sender".equals(sort));
|
||||
(viewType != ViewType.THREAD || !threading) && !show_recipients);
|
||||
Address[] senders = ContactInfo.fillIn(reverse ? message.to : message.senders, prefer_contact);
|
||||
Address[] recipients = ContactInfo.fillIn(reverse ? message.from : message.recipients, prefer_contact);
|
||||
boolean authenticated =
|
||||
|
||||
Reference in New Issue
Block a user