Skip to content

Commit

Permalink
fix(profile): add legacy root for old core.ProfilePage.index
Browse files Browse the repository at this point in the history
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
  • Loading branch information
skjnldsv committed Nov 13, 2024
1 parent bde4be6 commit c83acf2
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/private/Route/Router.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit c83acf2

Please sign in to comment.