mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-26 09:03:48 +08:00
Bugfix: new identity PGP settings incorrect value assignment
This commit is contained in:
parent
8ab32816e2
commit
2ed6ccf89c
1 changed files with 2 additions and 2 deletions
|
@ -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()*/);
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue