mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-03 23:56:07 +02:00
Skip adding attachments of embedded messages
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user