Skip to content

Commit

Permalink
Make url handling case sensitive (bug).
Browse files Browse the repository at this point in the history
  • Loading branch information
kgilmer committed Nov 2, 2012
1 parent 9da6384 commit 24c0b6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ public <T> Response<T> call(final HttpMethod method, final String url, final Res

validateArguments(method, url);

String httpUrl = url.toLowerCase();
String httpUrl = url;
if (!httpUrl.startsWith("http://") && !httpUrl.startsWith("https://"))
httpUrl = "http://" + url;

Expand Down

0 comments on commit 24c0b6d

Please sign in to comment.