Enhancement: downloading torrents list for qbittorrent (#4405)
Some checks are pending
Docker / Linting Checks (push) Waiting to run
Docker / Docker Build & Push (push) Blocked by required conditions

This commit is contained in:
Mindfreak9100
2024-12-12 19:32:03 -05:00
committed by GitHub
parent 3c28e4af44
commit 22c02f4e45
3 changed files with 31 additions and 7 deletions

View File

@@ -479,6 +479,9 @@ export function cleanServiceGroups(groups) {
// proxmox
node,
// qbittorrent
enableLeechProgress,
// speedtest
bitratePrecision,
@@ -671,6 +674,9 @@ export function cleanServiceGroups(groups) {
if (type === "spoolman") {
if (spoolIds !== undefined) widget.spoolIds = spoolIds;
}
if (type === "qbittorrent") {
if (enableLeechProgress !== undefined) widget.enableLeechProgress = JSON.parse(enableLeechProgress);
}
return widget;
});
return cleanedService;