Treat forcedMetaDL from qBit as queued instead of downloading

This commit is contained in:
ManiMatter 2024-07-25 06:33:08 +02:00 committed by GitHub
parent 5ad3d2efcc
commit 9a613afa35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -281,6 +281,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
break; break;
case "metaDL": // torrent magnet is being downloaded case "metaDL": // torrent magnet is being downloaded
case "forcedMetaDL": // torrent metadata is being forcibly downloaded
if (config.DhtEnabled) if (config.DhtEnabled)
{ {
item.Status = DownloadItemStatus.Queued; item.Status = DownloadItemStatus.Queued;
@ -295,7 +296,6 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
break; 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 "moving": // torrent is being moved from a folder
case "downloading": // torrent is being downloaded and data is being transferred case "downloading": // torrent is being downloaded and data is being transferred
item.Status = DownloadItemStatus.Downloading; item.Status = DownloadItemStatus.Downloading;