We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25a8797 commit 86cbfbcCopy full SHA for 86cbfbc
CDL.java
@@ -69,7 +69,12 @@ private static String getValue(JSONTokener x) throws JSONException {
69
for (;;) {
70
c = x.next();
71
if (c == q) {
72
- break;
+ //Handle escaped double-quote
73
+ if(x.next() != '\"')
74
+ {
75
+ x.back();
76
+ break;
77
+ }
78
}
79
if (c == 0 || c == '\n' || c == '\r') {
80
throw x.syntaxError("Missing close quote '" + q + "'.");
0 commit comments