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

Commit

Permalink
Merge pull request #475 from seckin92/patch-1
Browse files Browse the repository at this point in the history
Unescape JSON values to avoid malformed URIs
  • Loading branch information
bsvensson authored Apr 11, 2018
2 parents cdd9b70 + 733a1f2 commit 2c6a7f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DotNet/proxy.ashx
Original file line number Diff line number Diff line change
Expand Up @@ -886,7 +886,7 @@ public class proxy : IHttpHandler {
)
);
}
return value;
return value.Replace("\\/", "/");
}

private int indexOf_HighFlag(string text, string key) {
Expand Down

0 comments on commit 2c6a7f8

Please sign in to comment.