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
/{foo}/{bar}. Having /one%2Ftwo/three%2Ffour would yield foo being one/two and bar being three/four. But after rawurldecode, it becomes /one/two/three/four, being unable to extract the parameters in a deterministic way.
I know this is an edge case but they usually show wrong abstractions :) Feel free to close this as this is easily solvable in the handler, I'm just used to different behaviour from MVC frameworks...
I have a dispatcher like this:
When I visit a URL that looks like this:
I'd expect to receive
clue/ndjson-react
in$vars['package']
here:But instead I receive
/license/clue%2Fndjson-react
, leaving the unescaping to the handler.The text was updated successfully, but these errors were encountered: