summaryrefslogtreecommitdiff
path: root/std/textproto
diff options
context:
space:
mode:
Diffstat (limited to 'std/textproto')
-rw-r--r--std/textproto/mod.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/std/textproto/mod.ts b/std/textproto/mod.ts
index 48bbed8bf..e5645a9ed 100644
--- a/std/textproto/mod.ts
+++ b/std/textproto/mod.ts
@@ -114,7 +114,9 @@ export class TextProtoReader {
// example: "Audio Mode" => invalid due to space in the key
try {
m.append(key, value);
- } catch {}
+ } catch {
+ // Pass
+ }
}
}