summaryrefslogtreecommitdiffstats
path: root/lib/Cron
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2020-09-02 08:23:59 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-09-02 08:31:10 +0200
commit9bb6bf691c68a2f35854c12684bd763b62a026b8 (patch)
treea42b8336d0c424051f9059831a8c3e611c629dee /lib/Cron
parent250ad619b777f82d2a36770af2940710b1d6f6cd (diff)
Fix UpdateInteval not being saved to config
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'lib/Cron')
-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 9a65554a9..a33d7e7c1 100644
--- a/lib/Cron/Updater.php
+++ b/lib/Cron/Updater.php
@@ -42,7 +42,7 @@ class Updater extends TimedJob
$this->status = $status;
$this->updaterService = $updaterService;
- parent::setInterval($this->config->getupdateInterval());
+ parent::setInterval($this->config->getUpdateInterval());
}
protected function run($argument)