From 3a3c19fb7706029faf9c1ac76d7ad1054aaf8437 Mon Sep 17 00:00:00 2001 From: ManiMatter <124743318+ManiMatter@users.noreply.github.com> Date: Thu, 25 Jul 2024 06:33:08 +0200 Subject: [PATCH] Treat forcedMetaDL from qBit as queued instead of downloading (cherry picked from commit 9a613afa355fbc8cdf29c4d1b8eb1f1586405eb7) --- 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 b6c56f6d8..d25176d2b 100644 --- a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs @@ -279,6 +279,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent break; case "metaDL": // torrent magnet is being downloaded + case "forcedMetaDL": // torrent metadata is being forcibly downloaded if (config.DhtEnabled) { item.Status = DownloadItemStatus.Queued; @@ -293,7 +294,6 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent break; 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;