mirror of
https://github.com/Readarr/Readarr.git
synced 2026-02-01 01:31:50 -05:00
Fixed: Send category to qBittorrent when adding torrent/magnet
This commit is contained in:
@@ -75,6 +75,11 @@ public void AddTorrentFromUrl(string torrentUrl, QBittorrentSettings settings)
|
||||
.Post()
|
||||
.AddFormParameter("urls", torrentUrl);
|
||||
|
||||
if (settings.TvCategory.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
request.AddFormParameter("category", settings.TvCategory);
|
||||
}
|
||||
|
||||
var result = ProcessRequest(request, settings);
|
||||
|
||||
// Note: Older qbit versions returned nothing, so we can't do != "Ok." here.
|
||||
@@ -105,6 +110,11 @@ public void RemoveTorrent(string hash, Boolean removeData, QBittorrentSettings s
|
||||
.Post()
|
||||
.AddFormParameter("hashes", hash);
|
||||
|
||||
if (settings.TvCategory.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
request.AddFormParameter("category", settings.TvCategory);
|
||||
}
|
||||
|
||||
ProcessRequest(request, settings);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user