Merge pull request #54530 from nextcloud/fix/lowercase-profile-page-route-name

This commit is contained in:
Kate 2025-08-20 17:07:02 +02:00 committed by GitHub
commit f7cdb228c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}