Fixed: Filter qbittorrent torrent list on newer versions.

fixes #1470
ref #1347
This commit is contained in:
Taloth Saldono 2016-09-23 21:42:21 +02:00
parent cd79b42f5f
commit edc1e0b8d1
1 changed files with 3 additions and 2 deletions

View File

@ -58,7 +58,8 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
public List<QBittorrentTorrent> GetTorrents(QBittorrentSettings settings)
{
var request = BuildRequest(settings).Resource("/query/torrents")
.AddQueryParam("label", settings.TvCategory);
.AddQueryParam("label", settings.TvCategory)
.AddQueryParam("category", settings.TvCategory);
var response = ProcessRequest<List<QBittorrentTorrent>>(request, settings);