Fixed recipients count for reply

This commit is contained in:
M66B 2019-05-22 22:44:36 +02:00
parent 0515ae9ea9
commit a2365a7ba7
1 changed files with 2 additions and 2 deletions

View File

@ -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;