Register the autoloading earlier so we can load the background jobs
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
6cc26efbc5
commit
3f29c55914
|
@ -1054,10 +1054,9 @@ class OC_App {
|
||||||
self::loadApp($appId);
|
self::loadApp($appId);
|
||||||
include $appPath . '/appinfo/update.php';
|
include $appPath . '/appinfo/update.php';
|
||||||
}
|
}
|
||||||
|
self::registerAutoloading($appId, $appPath);
|
||||||
self::setupBackgroundJobs($appData['background-jobs']);
|
self::setupBackgroundJobs($appData['background-jobs']);
|
||||||
if(isset($appData['settings']) && is_array($appData['settings'])) {
|
if(isset($appData['settings']) && is_array($appData['settings'])) {
|
||||||
$appPath = self::getAppPath($appId);
|
|
||||||
self::registerAutoloading($appId, $appPath);
|
|
||||||
\OC::$server->getSettingsManager()->setupSettings($appData['settings']);
|
\OC::$server->getSettingsManager()->setupSettings($appData['settings']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue