summaryrefslogtreecommitdiffstats
path: root/lib/Config
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/Config
parent250ad619b777f82d2a36770af2940710b1d6f6cd (diff)
Fix UpdateInteval not being saved to config
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'lib/Config')
-rw-r--r--lib/Config/Config.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/Config/Config.php b/lib/Config/Config.php
index 35d947871..727cbdb7d 100644
--- a/lib/Config/Config.php
+++ b/lib/Config/Config.php
@@ -196,8 +196,10 @@ class Config
$this->exploreUrl . "\n" .
'feedFetcherTimeout = ' .
$this->feedFetcherTimeout . "\n" .
+ 'updateInterval = ' .
+ $this->updateInterval . "\n" .
'useCronUpdates = ' .
- var_export($this->useCronUpdates, true);
+ var_export($this->useCronUpdates, true);
;
$this->fileSystem->get($configPath)->putContent($ini);