Making status messages for meta downloading consistent (forced download and regular download)

This commit is contained in:
Benjamin Harder 2024-07-24 23:14:31 +02:00
parent 80ca1a6ac2
commit 976c0703c2
1 changed files with 1 additions and 1 deletions

View File

@ -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;