mirror of
https://github.com/Sonarr/Sonarr
synced 2025-02-24 15:11:27 +00:00
Fixed: Handle qBittorrent "moving" state
This commit is contained in:
parent
ab9ed73e55
commit
2daf7dd01a
1 changed files with 6 additions and 0 deletions
|
@ -194,8 +194,14 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
|
|||
}
|
||||
break;
|
||||
|
||||
case "moving": // torrent is being moved from a folder
|
||||
case "downloading": // torrent is being downloaded and data is being transfered
|
||||
item.Status = DownloadItemStatus.Downloading;
|
||||
break;
|
||||
|
||||
default: // new status in API? default to downloading
|
||||
item.Message = "Unknown download state: " + torrent.State;
|
||||
_logger.Info(item.Message);
|
||||
item.Status = DownloadItemStatus.Downloading;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue