mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 08:48:07 -06:00
WebUI: iterate over own properties only
This commit is contained in:
@@ -47,6 +47,9 @@ window.qBittorrent.Download = (function() {
|
||||
if (data) {
|
||||
categories = data;
|
||||
for (const i in data) {
|
||||
if (!Object.hasOwn(data, i))
|
||||
continue;
|
||||
|
||||
const category = data[i];
|
||||
const option = new Element("option");
|
||||
option.set("value", category.name);
|
||||
|
||||
Reference in New Issue
Block a user