Skip to content

Commit

Permalink
Update mailHelper.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
tinohager committed Jul 22, 2024
1 parent e849836 commit ddc2dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Frontend/src/helpers/mailHelper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ function splitMailHeader (mailRaw : string) : HeaderDetails[] | undefined {

if (/^\s/.test(line)) {
// Line is a continuation of the previous header field
currentLine += line
currentLine += ' ' + line.trim()
} else {
// Line is a new header field
if (currentLine) {
Expand Down

0 comments on commit ddc2dc3

Please sign in to comment.