mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-02 13:14:39 +00:00
Skip adding attachments of embedded messages
This commit is contained in:
parent
e4f4eccfce
commit
109983e65c
1 changed files with 2 additions and 1 deletions
|
@ -4803,7 +4803,8 @@ public class FragmentCompose extends FragmentBase {
|
|||
int sequence = 0;
|
||||
List<EntityAttachment> attachments = db.attachment().getAttachments(ref.id);
|
||||
for (EntityAttachment attachment : attachments)
|
||||
if (!attachment.isEncryption() &&
|
||||
if (attachment.subsequence == null &&
|
||||
!attachment.isEncryption() &&
|
||||
(cid.contains(attachment.cid) ||
|
||||
!("reply".equals(action) || "reply_all".equals(action)))) {
|
||||
if (attachment.available) {
|
||||
|
|
Loading…
Reference in a new issue