Skip to content

Commit c0f0bf9

Browse files
authored
Merge pull request #56521 from nextcloud/bugfix/56344/unified-search-limit
[stable31] fix(unified-search): Register config lexicon of core so the default i…
2 parents ee6436b + aa654dc commit c0f0bf9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/private/AppFramework/Bootstrap/Coordinator.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
namespace OC\AppFramework\Bootstrap;
1111

12+
use OC\Core\AppInfo\ConfigLexicon;
1213
use OC\Support\CrashReport\Registry;
1314
use OC_App;
1415
use OCP\App\AppPathNotFoundException;
@@ -60,6 +61,9 @@ private function registerApps(array $appIds): void {
6061
if ($this->registrationContext === null) {
6162
$this->registrationContext = new RegistrationContext($this->logger);
6263
}
64+
65+
$this->registrationContext->registerConfigLexicon('core', ConfigLexicon::class);
66+
6367
$apps = [];
6468
foreach ($appIds as $appId) {
6569
$this->eventLogger->start("bootstrap:register_app:$appId", "Register $appId");

0 commit comments

Comments
 (0)