-
-
Notifications
You must be signed in to change notification settings - Fork 467
Closed
Labels
questionIssue can be closed by providing informationIssue can be closed by providing information
Description
If I GET a url such as:
https://myserver.com/imgs/image with space.png?param=one two
the URL seen by the server is:
https://myserver.com/imgs/image%20with%20space.png?param=one%20two
The query parameters are decoded correctly, into:
param --> one two
However, the URL is still imgs/image%20with%20space.png
Shouldn't crowcpp automatically decode the URL path before it is passed to a route handler?
ie I would expect my handler to see imgs/image with space.png
Or are we expected to manually decode this?
Metadata
Metadata
Assignees
Labels
questionIssue can be closed by providing informationIssue can be closed by providing information