Fixed: Add form param before submitting request

Co-Authored-By: taloth <taloth@users.noreply.github.com>
This commit is contained in:
Qstick 2018-03-25 21:37:34 -04:00
commit 22eb5cfc66

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.MusicCategory.IsNotNullOrWhiteSpace()) if (settings.MusicCategory.IsNotNullOrWhiteSpace())
{ {
request.AddFormParameter("category", settings.MusicCategory); request.AddFormParameter("category", settings.MusicCategory);
} }
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.")
{ {