mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 15:27:43 +08:00
Bugfix: pgpDecrypt() using MailVelope the decrypt message was not green
This commit is contained in:
parent
db426abbac
commit
0feae48464
1 changed files with 1 additions and 1 deletions
|
@ -530,8 +530,8 @@ export class MailMessageView extends AbstractViewRight {
|
|||
const oMessage = currentMessage();
|
||||
PgpUserStore.decrypt(oMessage).then(result => {
|
||||
if (result) {
|
||||
oMessage.pgpDecrypted(true);
|
||||
if (result.data) {
|
||||
oMessage.pgpDecrypted(true);
|
||||
MimeToMessage(result.data, oMessage);
|
||||
oMessage.html() ? oMessage.viewHtml() : oMessage.viewPlain();
|
||||
if (result.signatures?.length) {
|
||||
|
|
Loading…
Reference in a new issue