From 13b33ae8a1e9d7cae4321930ff6bdfede0ed737d Mon Sep 17 00:00:00 2001 From: zak39 Date: Wed, 20 Aug 2025 11:39:48 +0200 Subject: [PATCH] fix(route): Change "core.ProfilePage.index" to lowercase Signed-off-by: zak39 --- lib/private/Route/Router.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/Route/Router.php b/lib/private/Route/Router.php index 91cf2b9fade66..97226ee117927 100644 --- a/lib/private/Route/Router.php +++ b/lib/private/Route/Router.php @@ -416,8 +416,8 @@ protected function fixLegacyRootName(string $routeName): string { if ($routeName === 'cloud_federation_api.requesthandlercontroller.receivenotification') { return 'cloud_federation_api.requesthandler.receivenotification'; } - if ($routeName === 'core.ProfilePage.index') { - return 'profile.ProfilePage.index'; + if ($routeName === 'core.profilepage.index') { + return 'profile.profilepage.index'; } return $routeName; }