mirror of
https://github.com/nextcloud/server.git
synced 2026-05-21 17:45:40 -04:00
Merge pull request #56926 from nextcloud/fix/CachingRouter/disable-cache-find-matching
This commit is contained in:
commit
d343207b25
1 changed files with 2 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue