Skip to content

Commit

Permalink
[fix] fix #738
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrugzz committed Dec 2, 2014
1 parent 410a8ce commit 9c0b869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/http-proxy/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ common.urlJoin = function() {
retSegs = [
args.filter(function filter(a) {
return !!a;
}).join('/').replace(/\/+/g, '/')
}).join('/').replace(/\/+/g, '/').replace(/:\//g, '://')
];

// Only join the query string if it exists so we don't have trailing a '?'
Expand Down

0 comments on commit 9c0b869

Please sign in to comment.