mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-11-08 06:11:37 +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(),
|
let emails = [...message.from,...message.to,...message.cc].validUnique(),
|
||||||
i = emails.length;
|
i = emails.length;
|
||||||
while (i--) {
|
while (i--) {
|
||||||
if (await this.getMailvelopePrivateKeyFor(emails[i].email)) {
|
if (await this.getPrivateKeyFor(emails[i].email)) {
|
||||||
/**
|
/**
|
||||||
* https://mailvelope.github.io/mailvelope/Mailvelope.html#createEncryptedFormContainer
|
* https://mailvelope.github.io/mailvelope/Mailvelope.html#createEncryptedFormContainer
|
||||||
* Creates an iframe to display an encrypted form
|
* Creates an iframe to display an encrypted form
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue