Bugfix: new identity PGP settings incorrect value assignment

This commit is contained in:
the-djmaze 2024-02-12 10:32:10 +01:00
parent 8ab32816e2
commit 2ed6ccf89c

View file

@ -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()*/);
}
},