We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f0d8d0 commit 65c9041Copy full SHA for 65c9041
src/Dispatch.php
@@ -206,7 +206,7 @@ public function getComponentAliases()
206
*/
207
public function handleRequest(Request $request): Response
208
{
209
- $path = substr($request->getPathInfo(), strlen(Request::create($this->_baseUri)->getPathInfo()));
+ $path = urldecode(substr($request->getPathInfo(), strlen(Request::create($this->_baseUri)->getPathInfo())));
210
$pathParts = array_filter(explode('/', $path));
211
$type = array_shift($pathParts);
212
switch($type)
0 commit comments