summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--textproto.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/textproto.ts b/textproto.ts
index 50c0fea9c..4c4b92627 100644
--- a/textproto.ts
+++ b/textproto.ts
@@ -6,7 +6,7 @@
import { BufReader, BufState } from "./bufio.ts";
import { charCode } from "./util.ts";
-const asciiDecoder = new TextDecoder("ascii");
+const asciiDecoder = new TextDecoder();
function str(buf: Uint8Array): string {
if (buf == null) {
return "";