fix(route): Change "core.ProfilePage.index" to lowercase

Signed-off-by: zak39 <fotia.baptiste@hotmail.com>
This commit is contained in:
zak39 2025-08-20 11:39:48 +02:00 committed by Andy Scherzinger
parent 9f1ee66391
commit 13b33ae8a1

View file

@ -416,8 +416,8 @@ class Router implements IRouter {
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;
}