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.
1 parent 71d4cb5 commit 0722069Copy full SHA for 0722069
lib/send-mail.ts
@@ -54,7 +54,7 @@ export async function parseMBox(mbox: string, gentle?: boolean): Promise<IParsed
54
55
for (const entry of parsed.headerLines) {
56
// try to parse header line and consume a leading line break after the colon in folded headers
57
- const valueSet = entry.line.match(/(.*?):(?:\r?\n)? *([^]*)$/);
+ const valueSet = entry.line.match(/(.*?):(?:\r\n)? *([^]*)$/);
58
if (!valueSet) {
59
if (entry.line[entry.line.length - 1] === ":") {
60
continue;
0 commit comments