Skip to content

Commit

Permalink
fix for double URL decoded query string
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellspam committed Jan 25, 2013
1 parent 5f841fa commit 69163cc
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -500,7 +500,7 @@ private BrowserMobHttpResponse execute(BrowserMobHttpRequest req, int depth) {
har.getLog().addEntry(entry);
}

String query = method.getURI().getQuery();
String query = method.getURI().getRawQuery();
if (query != null) {
MultiMap<String> params = new MultiMap<String>();
UrlEncoded.decodeTo(query, params, "UTF-8");
Expand Down

0 comments on commit 69163cc

Please sign in to comment.