mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Bugfix: S/MIME sigPart handling
This commit is contained in:
parent
aebed32f76
commit
9941ff61f7
1 changed files with 1 additions and 1 deletions
|
|
@ -657,7 +657,7 @@ export class MailMessageView extends AbstractViewRight {
|
||||||
data.folder = message.folder;
|
data.folder = message.folder;
|
||||||
data.uid = message.uid;
|
data.uid = message.uid;
|
||||||
data.bodyPart = data.bodyPart?.raw;
|
data.bodyPart = data.bodyPart?.raw;
|
||||||
data.sigPart = data.sigPart?.raw;
|
data.sigPart = data.sigPart?.bodyRaw;
|
||||||
Remote.post('SMimeVerifyMessage', null, data).then(response => {
|
Remote.post('SMimeVerifyMessage', null, data).then(response => {
|
||||||
if (response?.Result) {
|
if (response?.Result) {
|
||||||
if (response.Result.body) {
|
if (response.Result.body) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue