Skip to content

Commit

Permalink
WebUI: Fix Torrent Management Mode selector
Browse files Browse the repository at this point in the history
  • Loading branch information
HanabishiRecca authored and glassez committed Jul 15, 2024
1 parent 09ed0d6 commit 920ae26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/www/private/scripts/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ window.qBittorrent.Download = (function() {
$("startTorrent").checked = !pref.add_stopped_enabled;
$("addToTopOfQueue").checked = pref.add_to_top_of_queue;

if (pref.auto_tmm_enabled === 1) {
if (pref.auto_tmm_enabled) {
$("autoTMM").selectedIndex = 1;
$("savepath").disabled = true;
}
Expand Down

0 comments on commit 920ae26

Please sign in to comment.