mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Fixed: Add form param before submitting request (#2674)
Co-Authored-By: taloth <taloth@users.noreply.github.com>
This commit is contained in:
parent
8ee71fd0fa
commit
802768bd24
1 changed files with 2 additions and 2 deletions
|
@ -95,13 +95,13 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
|
|||
.Post()
|
||||
.AddFormUpload("torrents", fileName, fileContent);
|
||||
|
||||
var result = ProcessRequest(request, settings);
|
||||
|
||||
if (settings.MovieCategory.IsNotNullOrWhiteSpace())
|
||||
{
|
||||
request.AddFormParameter("category", settings.MovieCategory);
|
||||
}
|
||||
|
||||
var result = ProcessRequest(request, settings);
|
||||
|
||||
// Note: Current qbit versions return nothing, so we can't do != "Ok." here.
|
||||
if (result == "Fails.")
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue