Fixed forwarding image attachments

This commit is contained in:
M66B 2021-04-06 07:45:54 +02:00
parent dc4df306c7
commit 75204208d0
1 changed files with 4 additions and 0 deletions

View File

@ -4134,6 +4134,10 @@ public class FragmentCompose extends FragmentBase {
if (cid.contains(attachment.cid))
attachment.disposition = Part.INLINE;
else {
attachment.cid = null;
attachment.disposition = Part.ATTACHMENT;
}
attachment.id = null;
attachment.message = data.draft.id;