Skip to content
This repository was archived by the owner on Apr 26, 2023. It is now read-only.

Commit 2c6a7f8

Browse files
authored
Merge pull request #475 from seckin92/patch-1
Unescape JSON values to avoid malformed URIs
2 parents cdd9b70 + 733a1f2 commit 2c6a7f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DotNet/proxy.ashx

+1-1
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ public class proxy : IHttpHandler {
886886
)
887887
);
888888
}
889-
return value;
889+
return value.Replace("\\/", "/");
890890
}
891891

892892
private int indexOf_HighFlag(string text, string key) {

0 commit comments

Comments
 (0)