summaryrefslogtreecommitdiffstats
path: root/lib/Controller
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/Controller
parent250ad619b777f82d2a36770af2940710b1d6f6cd (diff)
Fix UpdateInteval not being saved to config
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'lib/Controller')
-rw-r--r--lib/Controller/AdminController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Controller/AdminController.php b/lib/Controller/AdminController.php
index a8fcf7891..c5a476577 100644
--- a/lib/Controller/AdminController.php
+++ b/lib/Controller/AdminController.php
@@ -110,7 +110,7 @@ class AdminController extends Controller
$this->config->setFeedFetcherTimeout($feedFetcherTimeout);
$this->config->setUseCronUpdates($useCronUpdates);
$this->config->setExploreUrl($exploreUrl);
- $this->config->setupdateInterval($updateInterval);
+ $this->config->setUpdateInterval($updateInterval);
$this->config->write($this->configPath);
return [
@@ -122,7 +122,7 @@ class AdminController extends Controller
'feedFetcherTimeout' => $this->config->getFeedFetcherTimeout(),
'useCronUpdates' => $this->config->getUseCronUpdates(),
'exploreUrl' => $this->config->getExploreUrl(),
- 'updateInterval' => $this->config->getupdateInterval(),
+ 'updateInterval' => $this->config->getUpdateInterval(),
];
}
}