Call cron beforeUpdate() before update() (#172) (#174)

This commit is contained in:
coderkun 2017-06-03 13:32:57 +02:00 коммит произвёл Bernhard Posselt
Родитель ff16cd0908
Коммит 68e3fa0172
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -42,8 +42,8 @@ class Updater extends Job {
protected function run($argument) {
if ($this->config->getUseCronUpdates() &&
$this->status->isProperlyConfigured()) {
$this->updaterService->update();
$this->updaterService->beforeUpdate();
$this->updaterService->update();
$this->updaterService->afterUpdate();
}
}