You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The client uses CGI.escape() to escape path segments in the created URLs. Unfortunately, this module produces invalid path segments: it transforms spaces to +. This is fine for query string, but not path segments.
Newer versions of Cowboy, which have a stricter URL parsing, leave the + characters alone. So when a user of this HTTP client wants to create eg. a vhost with a space in it, he ends up with a vhost with a +.
The text was updated successfully, but these errors were encountered:
The client uses
CGI.escape()
to escape path segments in the created URLs. Unfortunately, this module produces invalid path segments: it transforms spaces to+
. This is fine for query string, but not path segments.Newer versions of Cowboy, which have a stricter URL parsing, leave the
+
characters alone. So when a user of this HTTP client wants to create eg. a vhost with a space in it, he ends up with a vhost with a+
.The text was updated successfully, but these errors were encountered: