Skip to content

Commit 00d09f0

Browse files
susnuxcome-nc
andcommitted
fixup!
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
1 parent 953b5c9 commit 00d09f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/private/AppFramework/Bootstrap/Coordinator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,11 @@ private function registerApps(array $appIds): void {
8383
* the \OCP\AppFramework\Bootstrap\IBootstrap interface
8484
*/
8585
if ($appId === 'core') {
86-
$applicationClassName = CoreApplication::class;
86+
$appNameSpace = 'OC\\Core';
8787
} else {
8888
$appNameSpace = App::buildAppNamespace($appId);
89-
$applicationClassName = $appNameSpace . '\\AppInfo\\Application';
9089
}
90+
$applicationClassName = $appNameSpace . '\\AppInfo\\Application';
9191

9292
try {
9393
if (class_exists($applicationClassName) && is_a($applicationClassName, IBootstrap::class, true)) {

0 commit comments

Comments
 (0)