From 2ed6ccf89ce3c2fd583e1a76278da628cfbe2a34 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Mon, 12 Feb 2024 10:32:10 +0100 Subject: [PATCH] Bugfix: new identity PGP settings incorrect value assignment --- dev/View/Popup/Compose.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/View/Popup/Compose.js b/dev/View/Popup/Compose.js index 9c5f63415..cb02b1c56 100644 --- a/dev/View/Popup/Compose.js +++ b/dev/View/Popup/Compose.js @@ -350,8 +350,8 @@ export class ComposePopupView extends AbstractViewPopup { currentIdentity: value => { if (value) { this.from(value.formattedName()); - this.pgpEncrypt(value.pgpEncrypt/* || SettingsUserStore.pgpEncrypt()*/); - this.pgpSign(value.pgpSign/* || SettingsUserStore.pgpSign()*/); + this.pgpEncrypt(value.pgpEncrypt()/* || SettingsUserStore.pgpEncrypt()*/); + this.pgpSign(value.pgpSign()/* || SettingsUserStore.pgpSign()*/); } },