From 90948f5096e5d2e3ad4b23ee05f2f4e84029eb10 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 becdb807f73..0381b1df1f2 100644 --- a/lib/private/Route/CachingRouter.php +++ b/lib/private/Route/CachingRouter.php @@ -74,6 +74,8 @@ class CachingRouter extends Router { * @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);