mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 08:16:43 -04:00
Merge pull request #54530 from nextcloud/fix/lowercase-profile-page-route-name
This commit is contained in:
commit
f7cdb228c9
1 changed files with 2 additions and 2 deletions
|
|
@ -442,8 +442,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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue