Merge pull request #21463 from nextcloud/fix/continue-not-return-register-exception

Continue with next app when one errors during register
This commit is contained in:
Christoph Wurst 2020-06-18 13:33:38 +02:00 committed by GitHub
commit 2f586bc7e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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));