summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2020-06-18 13:33:38 +0200
committerGitHub <noreply@github.com>2020-06-18 13:33:38 +0200
commit2f586bc7e09a909ff8d4d6a8c0821ea1efcba59c (patch)
tree89f4ac4aafaae54fdf53a6fab082faffdd46b9b5 /lib
parenta915b45190ee1fcfeffa37cd4f2fa2733b16e9ff (diff)
parent32bf95c774788880631b14f6d078545c05dac24d (diff)
downloadnextcloud-server-2f586bc7e09a909ff8d4d6a8c0821ea1efcba59c.tar.gz
nextcloud-server-2f586bc7e09a909ff8d4d6a8c0821ea1efcba59c.zip
Merge pull request #21463 from nextcloud/fix/continue-not-return-register-exception
Continue with next app when one errors during register
Diffstat (limited to 'lib')
-rw-r--r--lib/private/AppFramework/Bootstrap/Coordinator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/AppFramework/Bootstrap/Coordinator.php b/lib/private/AppFramework/Bootstrap/Coordinator.php
index 08951419906..dea7370e68d 100644
--- a/lib/private/AppFramework/Bootstrap/Coordinator.php
+++ b/lib/private/AppFramework/Bootstrap/Coordinator.php
@@ -84,7 +84,7 @@ class Coordinator {
$apps[$appId] = $application = $this->serverContainer->query($applicationClassName);
} catch (QueryException $e) {
// Weird, but ok
- return;
+ continue;
}
try {
$application->register($context->for($appId));