From a5e2e5777c4157b4d11ba8b60181c67ee232dda1 Mon Sep 17 00:00:00 2001 From: Jef LeCompte Date: Sun, 3 Nov 2019 21:42:54 -0500 Subject: [PATCH] Fixed: Added qBittorent state 'moving' (#3847) * Added qBittorent state 'moving' The state 'moving' wasn't being recording in Radarr, so it would show up as a warning. * Updated unknown state to be info --- src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs index d3571bf4e6..2dff11f5b6 100644 --- a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs @@ -183,13 +183,14 @@ public override IEnumerable GetItems() } 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.Warn(item.Message); + _logger.Info(item.Message); item.Status = DownloadItemStatus.Downloading; break; }