Add form param before submitting request.

This commit is contained in:
Taloth Saldono 2018-03-24 11:37:19 +01:00
parent 58e939beda
commit 700751715b
1 changed files with 2 additions and 2 deletions

View File

@ -95,13 +95,13 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
.Post() .Post()
.AddFormUpload("torrents", fileName, fileContent); .AddFormUpload("torrents", fileName, fileContent);
var result = ProcessRequest(request, settings);
if (settings.TvCategory.IsNotNullOrWhiteSpace()) if (settings.TvCategory.IsNotNullOrWhiteSpace())
{ {
request.AddFormParameter("category", settings.TvCategory); request.AddFormParameter("category", settings.TvCategory);
} }
var result = ProcessRequest(request, settings);
// Note: Current qbit versions return nothing, so we can't do != "Ok." here. // Note: Current qbit versions return nothing, so we can't do != "Ok." here.
if (result == "Fails.") if (result == "Fails.")
{ {