Don't break OCC if an app is breaking in it's Application class
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
6d3aef1849
commit
784b059a01
|
@ -113,6 +113,7 @@ class Coordinator {
|
|||
*/
|
||||
$appNameSpace = App::buildAppNamespace($appId);
|
||||
$applicationClassName = $appNameSpace . '\\AppInfo\\Application';
|
||||
try {
|
||||
if (class_exists($applicationClassName) && in_array(IBootstrap::class, class_implements($applicationClassName), true)) {
|
||||
try {
|
||||
/** @var IBootstrap|App $application */
|
||||
|
@ -121,13 +122,15 @@ class Coordinator {
|
|||
// Weird, but ok
|
||||
continue;
|
||||
}
|
||||
try {
|
||||
|
||||
$application->register($this->registrationContext->for($appId));
|
||||
}
|
||||
} catch (Throwable $e) {
|
||||
$this->logger->emergency('Error during app service registration: ' . $e->getMessage(), [
|
||||
'exception' => $e,
|
||||
'app' => $appId,
|
||||
]);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -135,7 +135,14 @@ class OC_App {
|
|||
ob_start();
|
||||
foreach ($apps as $app) {
|
||||
if (!isset(self::$loadedApps[$app]) && ($types === [] || self::isType($app, $types))) {
|
||||
try {
|
||||
self::loadApp($app);
|
||||
} catch (\Throwable $e) {
|
||||
\OC::$server->get(LoggerInterface::class)->emergency('Error during app loading: ' . $e->getMessage(), [
|
||||
'exception' => $e,
|
||||
'app' => $app,
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
ob_end_clean();
|
||||
|
|
Loading…
Reference in New Issue