Skip to content

Commit

Permalink
Fix for special character
Browse files Browse the repository at this point in the history
  • Loading branch information
emi420 committed Feb 26, 2024
1 parent b2e571a commit 6cd727e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/data/pq.cc
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ Pq::escapedJSON(const std::string &s) {
case '\x0c': o << " "; break;
case '\x0d': o << " "; break;
case '\x0e': o << " "; break;
case '\xfe': o << " "; break;
case '\x1f': o << "\\u001f"; break;
case '\x22': o << "\\\""; break;
case '\x5c': o << "\\\\"; break;
Expand Down

0 comments on commit 6cd727e

Please sign in to comment.