diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-05-28 13:26:07 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2025-06-02 15:58:54 +0200 |
commit | c21e1898508f172b95a21e5f4cacb4ad22fc628e (patch) | |
tree | 8e516db5f711bd9d291c6174eae9c31ad23d30e3 /lib/base.php | |
parent | 0a982374ecbfe05d28faf3385ec84a98eb84b4e8 (diff) | |
download | nextcloud-server-chore/refactor-core.tar.gz nextcloud-server-chore/refactor-core.zip |
fix: make core application bootstrapable by coordinatorchore/refactor-core
Co-authored-by: Ferdinand Thiessen <opensource@fthiessen.de>
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com>
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/base.php b/lib/base.php index 75f5cfee3e8..fcadc9380c3 100644 --- a/lib/base.php +++ b/lib/base.php @@ -784,8 +784,8 @@ class OC { // Make sure that the application class is not loaded before the database is setup if ($systemConfig->getValue('installed', false)) { $appManager->loadApp('settings'); - /* Build core application to make sure that listeners are registered */ - Server::get(\OC\Core\Application::class); + /* Run core application registration */ + $bootstrapCoordinator->runLazyRegistration('core'); } //make sure temporary files are cleaned up |