1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-20 01:42:35 +01:00

Treat forcedMetaDL from qBit as queued instead of downloading

(cherry picked from commit 9a613afa355fbc8cdf29c4d1b8eb1f1586405eb7)
This commit is contained in:
ManiMatter 2024-07-25 06:33:08 +02:00 committed by Bogdan
parent ae377d97a5
commit a3b3fee06b

View File

@ -281,6 +281,7 @@ public override IEnumerable<DownloadClientItem> GetItems()
break;
case "metaDL": // torrent magnet is being downloaded
case "forcedMetaDL": // torrent metadata is being forcibly downloaded
if (config.DhtEnabled)
{
item.Status = DownloadItemStatus.Queued;
@ -295,7 +296,6 @@ public override IEnumerable<DownloadClientItem> GetItems()
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;