diff options
author | Christoph Wurst <ChristophWurst@users.noreply.github.com> | 2020-06-18 13:33:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-18 13:33:38 +0200 |
commit | 2f586bc7e09a909ff8d4d6a8c0821ea1efcba59c (patch) | |
tree | 89f4ac4aafaae54fdf53a6fab082faffdd46b9b5 /lib | |
parent | a915b45190ee1fcfeffa37cd4f2fa2733b16e9ff (diff) | |
parent | 32bf95c774788880631b14f6d078545c05dac24d (diff) | |
download | nextcloud-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.php | 2 |
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)); |