From 55d01f620acb26b05533afdde4635ba8a49097da Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 16 May 2018 14:00:21 -0700 Subject: [PATCH] Fixed: Setting inital state of torrents sent to QBittorrent Fixes #2565 --- src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs index 664809cdc..9fb218d75 100644 --- a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs @@ -84,7 +84,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent _logger.Warn(ex, "Failed to set the torrent priority for {0}.", filename); } - SetInitialState(hash); + SetInitialState(hash.ToLower()); return hash; }