Skip to content

Commit

Permalink
Fix code format and style
Browse files Browse the repository at this point in the history
Co-authored-by: Chocobo1 <Chocobo1@users.noreply.github.com>
  • Loading branch information
jNullj and Chocobo1 committed Dec 2, 2023
1 parent ae79c73 commit 8510d96
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/webui/www/private/views/preferences.html
Original file line number Diff line number Diff line change
Expand Up @@ -733,10 +733,10 @@
</tr>
<tr>
<td>
<label for="feed_fetch_delay">QBT_TR(Feeds fetch delay:)QBT_TR[CONTEXT=OptionsDialog]</label>
<label for="feedFetchDelay">QBT_TR(Feeds fetch delay:)QBT_TR[CONTEXT=OptionsDialog]</label>
</td>
<td>
<input type="text" id="feed_fetch_delay" style="width: 4em;" />&nbsp;&nbsp;QBT_TR( sec)QBT_TR[CONTEXT=OptionsDialog]
<input type="text" id="feedFetchDelay" style="width: 4em;" />&nbsp;&nbsp;QBT_TR( sec)QBT_TR[CONTEXT=OptionsDialog]
</td>
</tr>
<tr>
Expand Down Expand Up @@ -2220,7 +2220,7 @@
// RSS Tab
$('enable_fetching_rss_feeds_checkbox').setProperty('checked', pref.rss_processing_enabled);
$('feed_refresh_interval').setProperty('value', pref.rss_refresh_interval);
$('feed_fetch_delay').setProperty('value', perf.rss_fetch_delay);
$('feedFetchDelay').setProperty('value', perf.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);
Expand Down Expand Up @@ -2632,7 +2632,7 @@
// RSS Tab
settings.set('rss_processing_enabled', $('enable_fetching_rss_feeds_checkbox').getProperty('checked'));
settings.set('rss_refresh_interval', $('feed_refresh_interval').getProperty('value'));
settings.set('rss_fetch_delay', $('feed_fetch_delay').getProperties('value'));
settings.set('rss_fetch_delay', $('feedFetchDelay').getProperties('value'));
settings.set('rss_max_articles_per_feed', $('maximum_article_number').getProperty('value'));
settings.set('rss_auto_downloading_enabled', $('enable_auto_downloading_rss_torrents_checkbox').getProperty('checked'));
settings.set('rss_download_repack_proper_episodes', $('downlock_repack_proper_episodes').getProperty('checked'));
Expand Down

0 comments on commit 8510d96

Please sign in to comment.