Unverified Commit 7ffb58c8 authored by Tim's avatar Tim Committed by GitHub

Don't escape forward slashes in JSON output

Forward slashes don't need to be escaped in JSON.
parent f73ac9f6
......@@ -109,7 +109,6 @@ struct JsonCodec::Impl {
switch (c) {
case '\"': escaped.addAll(kj::StringPtr("\\\"")); break;
case '\\': escaped.addAll(kj::StringPtr("\\\\")); break;
case '/' : escaped.addAll(kj::StringPtr("\\/" )); break;
case '\b': escaped.addAll(kj::StringPtr("\\b")); break;
case '\f': escaped.addAll(kj::StringPtr("\\f")); break;
case '\n': escaped.addAll(kj::StringPtr("\\n")); break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment