mirror of https://github.com/M66B/FairEmail.git
Fixed recipients count for reply
This commit is contained in:
parent
0515ae9ea9
commit
a2365a7ba7
|
@ -3223,8 +3223,8 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
|
||||
private void onActionReplyMenu(final ActionData data) {
|
||||
int recipients = 0;
|
||||
if (data.message.to != null)
|
||||
recipients += data.message.to.length;
|
||||
if (data.message.from != null)
|
||||
recipients += data.message.from.length;
|
||||
if (data.message.cc != null)
|
||||
recipients += data.message.cc.length;
|
||||
|
||||
|
|
Loading…
Reference in New Issue