Show attached images

This commit is contained in:
M66B 2020-04-16 08:16:47 +02:00
parent d5ce4dfa9f
commit 7e48b7f57a
1 changed files with 1 additions and 1 deletions

View File

@ -2220,7 +2220,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
List<EntityAttachment> images = new ArrayList<>();
for (EntityAttachment attachment : attachments)
if (!attachment.isInline() && attachment.isImage())
if (attachment.isAttachment() && attachment.isImage())
images.add(attachment);
adapterImage.set(images);
grpImages.setVisibility(images.size() > 0 ? View.VISIBLE : View.GONE);