From 4ac1aeaf061e9f27c61d80eb93c0cf6fe7f8e7b0 Mon Sep 17 00:00:00 2001 From: Qstick Date: Sun, 24 Apr 2022 13:14:58 -0500 Subject: [PATCH] Fixed: QBittorrent unknown download state: forcedMetaDL Closes #7242 Co-Authored-By: Mark McDowall --- src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs index e411c4076..2e34657a1 100644 --- a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs @@ -288,7 +288,8 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent break; - case "forcedDL": //torrent is being downloaded, and was forced started + case "forcedDL": // torrent is being downloaded, and was forced started + case "forcedMetaDL": // torrent metadata is being forcibly downloaded case "moving": // torrent is being moved from a folder case "downloading": // torrent is being downloaded and data is being transferred item.Status = DownloadItemStatus.Downloading;