Search reply if message from/to self

pull/162/head
M66B 5 years ago
parent e2db164ce9
commit 17b90fccd8

@ -1839,6 +1839,10 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
}
}
if (outgoing && message.reply != null &&
MessageHelper.equal(message.from, message.to))
return message.reply;
return (outgoing ? message.to : message.from);
}

Loading…
Cancel
Save