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?
If I GET a url such as:
https://myserver.com/imgs/image with space.png?param=one twothe URL seen by the server is:
https://myserver.com/imgs/image%20with%20space.png?param=one%20twoThe query parameters are decoded correctly, into:
param --> one twoHowever, the URL is still
imgs/image%20with%20space.pngShouldn'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.pngOr are we expected to manually decode this?