1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-28 08:58:41 +02:00

Fixed: QBittorrent unknown download state: forcedMetaDL

Closes #4997
This commit is contained in:
Mark McDowall 2022-04-23 21:14:06 -07:00
parent 458c5cd0b3
commit 18f7bcd212

View File

@ -286,7 +286,8 @@ public override IEnumerable<DownloadClientItem> GetItems()
}
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;