forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
url: keep auth in
url.resolve()
if host matches
Fixes: nodejs#8165 PR-URL: nodejs#8215 Reviewed-By: James M Snell <[email protected]>
- Loading branch information
1 parent
13da7f1
commit 7307367
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1571,6 +1571,9 @@ var relativeTests2 = [ | |
['mailto:another.host.com', | ||
'mailto:[email protected]', | ||
'mailto:another.host.com'], | ||
['https://example.com/foo', | ||
'https://user:[email protected]', | ||
'https://user:[email protected]/foo'], | ||
]; | ||
relativeTests2.forEach(function(relativeTest) { | ||
const a = url.resolve(relativeTest[1], relativeTest[0]); | ||
|