Treat forcedMetaDL from qBit as queued instead of downloading
This commit is contained in:
parent
5ad3d2efcc
commit
9a613afa35
|
@ -281,6 +281,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;
|
||||
|
@ -295,7 +296,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;
|
||||
|
|
Loading…
Reference in New Issue