Skip to content

Commit cc6d5fa

Browse files
committed
fix small issue with AppFinder path matching
1 parent 698248e commit cc6d5fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Middleware/AppFinder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ protected function identifyApp(ServerRequestInterface $request, Horde_Registry $
9696
$matches = [];
9797
$scheme = $request->getUri()->getScheme();
9898
$host = $request->getUri()->getHost();
99-
$path = $request->getUri()->getPath();
99+
$path = $this->_normalize($request->getUri()->getPath());
100100
// listApps() would return empty on unauthenticated access
101101
foreach ($registry->listApps(null, true, null) as $app => $config) {
102102
$default = [

0 commit comments

Comments
 (0)