We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
6089779 broke file:// URLs on Windows, where the path begins with something like C:/
file://
C:/
e.g. for file://C:/foo.txt, url.Parse will place "C:" in the Host field, and "/foo.txt" in the Path field.
file://C:/foo.txt
The text was updated successfully, but these errors were encountered:
Never mind, I realised I was holding it wrong. Just need another '/' at the front (e.g. file:///C:/foo.txt)
file:///C:/foo.txt
Sorry, something went wrong.
No branches or pull requests
6089779 broke
file://
URLs on Windows, where the path begins with something likeC:/
e.g. for
file://C:/foo.txt
, url.Parse will place "C:" in the Host field, and "/foo.txt" in the Path field.The text was updated successfully, but these errors were encountered: