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
Here https://github.com/aristidb/http-types/blob/master/Network/HTTP/Types/URI.hs#L253 documentation states Performs percent encoding on all unreserved characters, as well as @\:\@\=\+\$@, while under the hood it calls urlEncodeBuilder False which does not escape characters :@&=+$,. Also in the docs the characters :@&=+$, called unreserved but they are actually reserved https://developers.google.com/maps/url-encoding. I also send related PR here fizruk/http-api-data#119
Performs percent encoding on all unreserved characters, as well as @\:\@\=\+\$@,
urlEncodeBuilder False
:@&=+$,
The text was updated successfully, but these errors were encountered:
Fixed in 0.12.4 [Vlix#1]
Sorry, something went wrong.
No branches or pull requests
Here https://github.com/aristidb/http-types/blob/master/Network/HTTP/Types/URI.hs#L253 documentation states
Performs percent encoding on all unreserved characters, as well as @\:\@\=\+\$@,
while under the hood it callsurlEncodeBuilder False
which does not escape characters:@&=+$,
. Also in the docs the characters:@&=+$,
called unreserved but they are actually reserved https://developers.google.com/maps/url-encoding. I also send related PR here fizruk/http-api-data#119The text was updated successfully, but these errors were encountered: