From 9bba8f54ec5a7d4a317c5740e2bcbf1f01c357a5 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 23 Apr 2022 21:14:06 -0700 Subject: [PATCH] Fixed: QBittorrent unknown download state: forcedMetaDL Closes #2775 (cherry picked from commit 18f7bcd212566c857a7a5a3f4cf0e7ee31942db0) --- 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 5b99c9aa9..a4ec03851 100644 --- a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs @@ -286,7 +286,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;