From 9bb6bf691c68a2f35854c12684bd763b62a026b8 Mon Sep 17 00:00:00 2001 From: Benjamin Brahmer Date: Wed, 2 Sep 2020 08:23:59 +0200 Subject: Fix UpdateInteval not being saved to config Signed-off-by: Benjamin Brahmer --- lib/Config/Config.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/Config') 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); -- cgit v1.2.3