diff --git a/lib/private/AppFramework/Bootstrap/Coordinator.php b/lib/private/AppFramework/Bootstrap/Coordinator.php index 4e78450fa04be..91658188d4bbc 100644 --- a/lib/private/AppFramework/Bootstrap/Coordinator.php +++ b/lib/private/AppFramework/Bootstrap/Coordinator.php @@ -9,6 +9,7 @@ namespace OC\AppFramework\Bootstrap; +use OC\Core\AppInfo\ConfigLexicon; use OC\Support\CrashReport\Registry; use OC_App; use OCP\App\AppPathNotFoundException; @@ -60,6 +61,9 @@ private function registerApps(array $appIds): void { if ($this->registrationContext === null) { $this->registrationContext = new RegistrationContext($this->logger); } + + $this->registrationContext->registerConfigLexicon('core', ConfigLexicon::class); + $apps = []; foreach ($appIds as $appId) { $this->eventLogger->start("bootstrap:register_app:$appId", "Register $appId");