mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 21:33:27 -07:00
WebUI: remove unused/deprecated option
Fixup 8200ef6
Remove "Listen on IPv6 address" option.
This commit is contained in:
parent
3a70dd4438
commit
e693fdeaf9
1 changed files with 0 additions and 10 deletions
|
@ -837,14 +837,6 @@
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<td>
|
|
||||||
<label for="listenOnIPv6Address">QBT_TR(Listen on IPv6 address (requires restart):)QBT_TR[CONTEXT=OptionsDialog]</label>
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<input type="checkbox" id="listenOnIPv6Address">
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<label for="saveResumeDataInterval">QBT_TR(Save resume data interval:)QBT_TR[CONTEXT=OptionsDialog]</label>
|
<label for="saveResumeDataInterval">QBT_TR(Save resume data interval:)QBT_TR[CONTEXT=OptionsDialog]</label>
|
||||||
|
@ -1732,7 +1724,6 @@
|
||||||
// qBittorrent section
|
// qBittorrent section
|
||||||
updateNetworkInterfaces(pref.current_network_interface);
|
updateNetworkInterfaces(pref.current_network_interface);
|
||||||
updateInterfaceAddresses(pref.current_network_interface, pref.current_interface_address);
|
updateInterfaceAddresses(pref.current_network_interface, pref.current_interface_address);
|
||||||
$('listenOnIPv6Address').setProperty('checked', pref.listen_on_ipv6_address);
|
|
||||||
$('saveResumeDataInterval').setProperty('value', pref.save_resume_data_interval);
|
$('saveResumeDataInterval').setProperty('value', pref.save_resume_data_interval);
|
||||||
$('recheckTorrentsOnCompletion').setProperty('checked', pref.recheck_completed_torrents);
|
$('recheckTorrentsOnCompletion').setProperty('checked', pref.recheck_completed_torrents);
|
||||||
$('resolvePeerCountries').setProperty('checked', pref.resolve_peer_countries);
|
$('resolvePeerCountries').setProperty('checked', pref.resolve_peer_countries);
|
||||||
|
@ -2095,7 +2086,6 @@
|
||||||
// qBittorrent section
|
// qBittorrent section
|
||||||
settings.set('current_network_interface', $('networkInterface').getProperty('value'));
|
settings.set('current_network_interface', $('networkInterface').getProperty('value'));
|
||||||
settings.set('current_interface_address', $('optionalIPAddressToBind').getProperty('value'));
|
settings.set('current_interface_address', $('optionalIPAddressToBind').getProperty('value'));
|
||||||
settings.set('listen_on_ipv6_address', $('listenOnIPv6Address').getProperty('checked'));
|
|
||||||
settings.set('save_resume_data_interval', $('saveResumeDataInterval').getProperty('value'));
|
settings.set('save_resume_data_interval', $('saveResumeDataInterval').getProperty('value'));
|
||||||
settings.set('recheck_completed_torrents', $('recheckTorrentsOnCompletion').getProperty('checked'));
|
settings.set('recheck_completed_torrents', $('recheckTorrentsOnCompletion').getProperty('checked'));
|
||||||
settings.set('resolve_peer_countries', $('resolvePeerCountries').getProperty('checked'));
|
settings.set('resolve_peer_countries', $('resolvePeerCountries').getProperty('checked'));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue