From: skjnldsv Date: Wed, 13 Nov 2024 10:38:09 +0000 (+0100) Subject: fix(profile): add legacy root for old `core.ProfilePage.index` X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=54be2ef0f32bd7b4e4aaa0b0c4a04bfd9dc4ffdf;p=nextcloud-server.git fix(profile): add legacy root for old `core.ProfilePage.index` Signed-off-by: skjnldsv --- diff --git a/lib/private/Route/Router.php b/lib/private/Route/Router.php index 7ec2aac021c..886e70c9a35 100644 --- a/lib/private/Route/Router.php +++ b/lib/private/Route/Router.php @@ -407,6 +407,9 @@ 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'; + } return $routeName; }