diff --git a/src/NzbDrone.Core/Download/Clients/qBittorrent/QBittorrentProxy.cs b/src/NzbDrone.Core/Download/Clients/qBittorrent/QBittorrentProxy.cs index e7533245f..e65785f03 100644 --- a/src/NzbDrone.Core/Download/Clients/qBittorrent/QBittorrentProxy.cs +++ b/src/NzbDrone.Core/Download/Clients/qBittorrent/QBittorrentProxy.cs @@ -58,7 +58,8 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent public List 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>(request, settings); @@ -99,7 +100,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent .AddFormParameter("hashes", hash) .AddFormParameter("category", label); try - { + { ProcessRequest(setCategoryRequest, settings); } catch(DownloadClientException ex)