From ecd4cc7b72fdcf5e65c6a7e294486aa65dec981a Mon Sep 17 00:00:00 2001 From: Qstick Date: Wed, 4 Dec 2019 21:16:48 -0500 Subject: [PATCH] Fixed: Handle qBit ForcedDL State Fixes #3870 --- 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 318bac396..bfc6e5f8d 100644 --- a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs @@ -196,6 +196,7 @@ public override IEnumerable GetItems() } 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;