From 1c699841c10b1134f060229d7678434e72cacae5 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 5 Mar 2020 09:13:44 -0800 Subject: [PATCH] Fixed: Handle qBit ForcedDL State Closes #3604 --- src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs index 6a3b75804..99c57264a 100644 --- a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs @@ -194,6 +194,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent } break; + case "forcedDL": //torrent is being downloaded, and was forced started case "moving": // torrent is being moved from a folder case "downloading": // torrent is being downloaded and data is being transfered item.Status = DownloadItemStatus.Downloading;