summaryrefslogtreecommitdiffstats
path: root/js
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 /js
parent250ad619b777f82d2a36770af2940710b1d6f6cd (diff)
Fix UpdateInteval not being saved to config
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
Diffstat (limited to 'js')
-rw-r--r--js/admin/Admin.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/admin/Admin.js b/js/admin/Admin.js
index 99866c349..5830f13f5 100644
--- a/js/admin/Admin.js
+++ b/js/admin/Admin.js
@@ -85,7 +85,7 @@
feedFetcherTimeoutInput.val(data.feedFetcherTimeout);
useCronUpdatesInput.prop('checked', data.useCronUpdates);
exploreUrlInput.val(data.exploreUrl);
- updateInterval.val(data.updateInterval);
+ updateIntervalInput.val(data.updateInterval);
});
};