1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-23 13:04:23 +00:00

Fix wrong element id being used

This commit is contained in:
Thomas Piccirello 2019-01-20 16:00:29 -08:00
parent 81943fb3b0
commit ece27b84cc

View File

@ -79,7 +79,7 @@ var changeCategorySelect = function(item) {
item.nextElementSibling.value = "";
item.nextElementSibling.select();
if ($('autotmm').selectedIndex == 1)
if ($('autoTMM').selectedIndex == 1)
$('savepath').value = defaultSavePath;
}
else {
@ -87,7 +87,7 @@ var changeCategorySelect = function(item) {
var text = item.options[item.selectedIndex].innerHTML;
item.nextElementSibling.value = text;
if ($('autotmm').selectedIndex == 1) {
if ($('autoTMM').selectedIndex == 1) {
var categoryName = item.value;
var category = categories[categoryName];
var savePath = defaultSavePath;