summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Cron/Updater.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Cron/Updater.php b/lib/Cron/Updater.php
index 6d8fea832..b26b11b45 100644
--- a/lib/Cron/Updater.php
+++ b/lib/Cron/Updater.php
@@ -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();
}
}