We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df9b891 commit 70ccbd6Copy full SHA for 70ccbd6
library/src/main/java/com/loopj/android/http/JsonStreamerEntity.java
@@ -288,9 +288,6 @@ static byte[] escape(String string) {
288
case '\t':
289
BUILDER.append("\\t");
290
break;
291
- case '/':
292
- BUILDER.append("\\/");
293
- break;
294
default:
295
// Reference: http://www.unicode.org/versions/Unicode5.1.0/
296
if((ch >= '\u0000' && ch <= '\u001F') || (ch >= '\u007F' && ch <= '\u009F') || (ch >= '\u2000' && ch <= '\u20FF')) {
0 commit comments