From d4a599ae05c1e6c33ec4f216e6b0ff07c7822ccc Mon Sep 17 00:00:00 2001 From: mathe42 <2pi_r2@gmx.de> Date: Fri, 22 Apr 2022 17:49:26 +0200 Subject: [PATCH] fix typo --- encoding.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/encoding.ts b/encoding.ts index b282735..9a772a4 100644 --- a/encoding.ts +++ b/encoding.ts @@ -16,7 +16,7 @@ export function quotedPrintableEncode(data: string, encLB = false) { if (encodedChar.length === 1) { const code = encodedChar[0]; - if (code >= 32 && code <= 126 && code !== 63) return ch; + if (code >= 32 && code <= 126 && code !== 61) return ch; if (!encLB && (code === 10 || code === 13)) return ch; if (code === 9) return ch; }