mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-06 00:53:26 +02:00
Hide encryption attachments
This commit is contained in:
@@ -1612,7 +1612,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
|
||||
List<EntityAttachment> a = new ArrayList<>();
|
||||
for (EntityAttachment attachment : attachments) {
|
||||
boolean inline = (attachment.isInline() && attachment.isImage());
|
||||
boolean inline = ((attachment.isInline() && attachment.isImage()) || attachment.encryption != null);
|
||||
if (inline)
|
||||
has_inline = true;
|
||||
if (attachment.progress == null && !attachment.available)
|
||||
|
||||
Reference in New Issue
Block a user