From c83acf2c7902e1113f71f8e5612823d6edc7bfb3 Mon Sep 17 00:00:00 2001 From: skjnldsv Date: Wed, 13 Nov 2024 11:38:09 +0100 Subject: [PATCH] fix(profile): add legacy root for old `core.ProfilePage.index` Signed-off-by: skjnldsv --- lib/private/Route/Router.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/private/Route/Router.php b/lib/private/Route/Router.php index 7ec2aac021caa..886e70c9a35ea 100644 --- a/lib/private/Route/Router.php +++ b/lib/private/Route/Router.php @@ -407,6 +407,9 @@ protected function fixLegacyRootName(string $routeName): string { if ($routeName === 'cloud_federation_api.requesthandlercontroller.receivenotification') { return 'cloud_federation_api.requesthandler.receivenotification'; } + if ($routeName === 'core.ProfilePage.index') { + return 'profile.ProfilePage.index'; + } return $routeName; }