fix(qBittorrent): Tag removal (#605) (#770)

This commit is contained in:
Alex Thomson
2024-08-09 15:24:19 +12:00
committed by GitHub
parent 89e90bfd74
commit a078cfe2b0

View File

@@ -482,7 +482,7 @@ class ClientRequestManager {
`${this.apiBase}/torrents/removeTags`,
new URLSearchParams({
hashes: hashes.join('|').toLowerCase(),
tags: tags?.join(','),
tags: tags?.join(',') ?? '',
}),
{
headers: await this.getRequestHeaders(),