We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ee6436b + aa654dc commit c0f0bf9Copy full SHA for c0f0bf9
lib/private/AppFramework/Bootstrap/Coordinator.php
@@ -9,6 +9,7 @@
9
10
namespace OC\AppFramework\Bootstrap;
11
12
+use OC\Core\AppInfo\ConfigLexicon;
13
use OC\Support\CrashReport\Registry;
14
use OC_App;
15
use OCP\App\AppPathNotFoundException;
@@ -60,6 +61,9 @@ private function registerApps(array $appIds): void {
60
61
if ($this->registrationContext === null) {
62
$this->registrationContext = new RegistrationContext($this->logger);
63
}
64
+
65
+ $this->registrationContext->registerConfigLexicon('core', ConfigLexicon::class);
66
67
$apps = [];
68
foreach ($appIds as $appId) {
69
$this->eventLogger->start("bootstrap:register_app:$appId", "Register $appId");
0 commit comments