Skip to content

Commit

Permalink
Bugfix: new identity PGP settings incorrect value assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
the-djmaze committed Feb 12, 2024
1 parent 8ab3281 commit 2ed6ccf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/View/Popup/Compose.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()*/);
}
},

Expand Down

0 comments on commit 2ed6ccf

Please sign in to comment.