[Uploader] Minor fix

This commit is contained in:
Sindrake 2024-07-15 17:37:27 -07:00
parent ca8e9406e9
commit 994494814b

View File

@ -534,7 +534,7 @@
tagsA.forEach((tag) => {
if(tagsB.indexOf(tag) >= 0) return;
// In advanced mode, checkboxes are not available
if(this.normalMode && this.checkboxes.all[tag] !== "undefined")
if(this.normalMode && typeof this.checkboxes.all[tag] !== "undefined")
this.setCheck(tag, true);
tagsB.push(tag);
});