Added from/subject to summarize dialog

This commit is contained in:
M66B
2024-05-14 13:11:59 +02:00
parent 90e527cb60
commit f7148dad57
4 changed files with 37 additions and 4 deletions

View File

@@ -7280,6 +7280,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
private void onActionSummarize(TupleMessageEx message) {
Bundle args = new Bundle();
args.putLong("id", message.id);
args.putString("from", MessageHelper.formatAddresses(message.from));
args.putString("subject", message.subject);
FragmentDialogSummarize fragment = new FragmentDialogSummarize();
fragment.setArguments(args);