From aa654dca44637ce94e2e0b39d9d101ca6ec5257b Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 19 Nov 2025 09:43:40 +0100 Subject: [PATCH] fix(unified-search): Register config lexicon of core so the default is working Signed-off-by: Joas Schilling --- lib/private/AppFramework/Bootstrap/Coordinator.php | 4 ++++ 1 file changed, 4 insertions(+) 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");