From 4dd6a0e766831ea1b91b01c2fc71335fb0e85705 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Wed, 18 Feb 2026 16:45:16 +0100 Subject: [PATCH] fix(composer): Forwarding emails with attachments Signed-off-by: Daniel Kesselberg --- src/components/Composer.vue | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/components/Composer.vue b/src/components/Composer.vue index 4efaed04cc..6a857a6de7 100644 --- a/src/components/Composer.vue +++ b/src/components/Composer.vue @@ -1093,19 +1093,6 @@ export default { }) } - // Add attachments in case of forward - if (this.forwardFrom?.attachments !== undefined) { - this.forwardFrom.attachments.forEach((att) => { - this.attachments.push({ - fileName: att.fileName, - displayName: trimStart('/', att.fileName), - id: att.id, - messageId: this.forwardFrom.databaseId, - type: 'message-attachment', - }) - }) - } - // Add messages forwarded as attachments for (const id of this.forwardedMessages) { const env = this.mainStore.getEnvelope(id)