From 94f0ad985dbc822678bda69cc9521352f990593b Mon Sep 17 00:00:00 2001 From: defnax <9952056+defnax@users.noreply.github.com> Date: Mon, 20 Jul 2026 20:29:17 +0200 Subject: [PATCH] fix forward mail with correct id --- webui-src/app/mail/mail_compose.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui-src/app/mail/mail_compose.js b/webui-src/app/mail/mail_compose.js index b895548..0bb24d2 100644 --- a/webui-src/app/mail/mail_compose.js +++ b/webui-src/app/mail/mail_compose.js @@ -148,7 +148,7 @@ const Layout = () => { } } - if (msgType === 'reply' || msgType === 'replyAll') { + if (msgType === 'reply' || msgType === 'replyAll' || msgType === 'forward') { Data.identity = Data.ownId.filter((id) => Object.prototype.hasOwnProperty.call(recipientList, id) )[0];