From c8a638f7e0e6ef8e9af5a4501953f72213d3d2ba Mon Sep 17 00:00:00 2001 From: provokateurin Date: Tue, 9 Dec 2025 09:16:01 +0100 Subject: [PATCH] fix(CachingRouter): Disable cache for findMatchingRoute Signed-off-by: provokateurin --- lib/private/Route/CachingRouter.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/private/Route/CachingRouter.php b/lib/private/Route/CachingRouter.php index becdb807f738b..0381b1df1f2e1 100644 --- a/lib/private/Route/CachingRouter.php +++ b/lib/private/Route/CachingRouter.php @@ -74,6 +74,8 @@ private function serializeRouteCollection(RouteCollection $collection): array { * @return array */ public function findMatchingRoute(string $url): array { + return parent::findMatchingRoute($url); + $this->eventLogger->start('cacheroute:match', 'Match route'); $key = $this->context->getHost() . '#' . $this->context->getBaseUrl() . '#rootCollection'; $cachedRoutes = $this->cache->get($key);