We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 547701b + 5dadc28 commit 68c4457Copy full SHA for 68c4457
email_mailbox/src/libs/signal.js
@@ -38,7 +38,11 @@ const decryptEmail = async ({
38
throw new Error(CONTENT_NOT_AVAILABLE);
39
}
40
if (typeof deviceId !== 'number' && typeof messageType !== 'number') {
41
- return { decryptedBody: body.body };
+ return {
42
+ decryptedBody: body.body,
43
+ decryptedHeaders: body.headers,
44
+ decryptedFileKeys: fileKeys
45
+ };
46
47
const res = await aliceRequestWrapper(() => {
48
return fetchDecryptBody({
0 commit comments