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

Signed-off-by: zak39 <fotia.baptiste@hotmail.com>
pull/54530/head
zak39 2025-08-20 11:39:48 +07:00
parent 4733369764
commit a98ba27a0f
1 changed files with 2 additions and 2 deletions

@ -442,8 +442,8 @@ class Router implements IRouter {
if ($routeName === 'cloud_federation_api.requesthandlercontroller.receivenotification') { if ($routeName === 'cloud_federation_api.requesthandlercontroller.receivenotification') {
return 'cloud_federation_api.requesthandler.receivenotification'; return 'cloud_federation_api.requesthandler.receivenotification';
} }
if ($routeName === 'core.ProfilePage.index') { if ($routeName === 'core.profilepage.index') {
return 'profile.ProfilePage.index'; return 'profile.profilepage.index';
} }
return $routeName; return $routeName;
} }