Show contact photo in outbound messages

This commit is contained in:
M66B 2019-01-19 13:26:14 +00:00
parent c3de24c60f
commit e67ca3b6da
1 changed files with 2 additions and 2 deletions

View File

@ -410,10 +410,10 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
boolean outgoing = (viewType != ViewType.THREAD && EntityFolder.isOutgoing(message.folderType));
if (!outgoing && (avatars || identicons)) {
if (avatars || identicons) {
Bundle aargs = new Bundle();
aargs.putLong("id", message.id);
aargs.putSerializable("addresses", message.from);
aargs.putSerializable("addresses", outgoing ? message.to : message.from);
new SimpleTask<ContactInfo>() {
@Override