mirror of
https://github.com/M66B/FairEmail.git
synced 2026-01-01 10:35:15 +01:00
Copy attachments on reply/forward only
This commit is contained in:
@@ -2207,7 +2207,9 @@ public class FragmentCompose extends FragmentBase {
|
||||
if (uris != null)
|
||||
for (Uri uri : uris)
|
||||
addAttachment(context, draft.id, uri, false);
|
||||
} else if (!"receipt".equals(action)) {
|
||||
} else if (ref != null &&
|
||||
("reply".equals(action) || "reply_all".equals(action) ||
|
||||
"forward".equals(action) || "editasnew".equals(action))) {
|
||||
int sequence = 0;
|
||||
List<EntityAttachment> attachments = db.attachment().getAttachments(ref.id);
|
||||
for (EntityAttachment attachment : attachments)
|
||||
|
||||
Reference in New Issue
Block a user