Skip to content

Commit

Permalink
enable mail body compression #4573
Browse files Browse the repository at this point in the history
  • Loading branch information
mpfau authored and ganthern committed Sep 30, 2022
1 parent 1e67d30 commit ab24142
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/worker/facades/MailFacade.ts
Expand Up @@ -221,7 +221,7 @@ export class MailFacade {

service.draftData = createDraftData({
subject,
bodyText,
compressedBodyText: bodyText,
senderMailAddress,
senderName,
confidential,
Expand Down Expand Up @@ -277,7 +277,7 @@ export class MailFacade {
service.draft = draft._id
service.draftData = createDraftData({
subject: subject,
bodyText: body,
compressedBodyText: body,
senderMailAddress: senderMailAddress,
senderName: senderName,
confidential: confidential,
Expand Down

0 comments on commit ab24142

Please sign in to comment.