mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-24 14:04:57 +08:00
Bugfix: undefined getMailvelopePrivateKeyFor()
This commit is contained in:
parent
0cbca605ec
commit
50569e1854
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ export const MailvelopeUserStore = {
|
|||
let emails = [...message.from,...message.to,...message.cc].validUnique(),
|
||||
i = emails.length;
|
||||
while (i--) {
|
||||
if (await this.getMailvelopePrivateKeyFor(emails[i].email)) {
|
||||
if (await this.getPrivateKeyFor(emails[i].email)) {
|
||||
/**
|
||||
* https://mailvelope.github.io/mailvelope/Mailvelope.html#createEncryptedFormContainer
|
||||
* Creates an iframe to display an encrypted form
|
||||
|
|
Loading…
Add table
Reference in a new issue