From df41940ebcc4f37d0ba1979ed7099e3f540c6b36 Mon Sep 17 00:00:00 2001 From: jNullj <15849761+jNullj@users.noreply.github.com> Date: Fri, 26 Jan 2024 09:58:57 +0200 Subject: [PATCH] Fix typo in preferences.html PR #20326. --- src/webui/www/private/views/preferences.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webui/www/private/views/preferences.html b/src/webui/www/private/views/preferences.html index a25c4bad7..387f4772c 100644 --- a/src/webui/www/private/views/preferences.html +++ b/src/webui/www/private/views/preferences.html @@ -2235,7 +2235,7 @@ Use ';' to split multiple entries. Can use wildcard '*'.)QBT_TR[CONTEXT=OptionsD // RSS Tab $('enable_fetching_rss_feeds_checkbox').setProperty('checked', pref.rss_processing_enabled); $('feed_refresh_interval').setProperty('value', pref.rss_refresh_interval); - $('feedFetchDelay').setProperty('value', perf.rss_fetch_delay); + $('feedFetchDelay').setProperty('value', pref.rss_fetch_delay); $('maximum_article_number').setProperty('value', pref.rss_max_articles_per_feed); $('enable_auto_downloading_rss_torrents_checkbox').setProperty('checked', pref.rss_auto_downloading_enabled); $('downlock_repack_proper_episodes').setProperty('checked', pref.rss_download_repack_proper_episodes);