From 7e175bf95ed0a7b624b04a397b953f27043211ae Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sun, 3 Oct 2021 00:44:13 -0700 Subject: [PATCH] Fixed: Qbit torrents treated as failed after error Closes #4674 --- src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs index 953d37819..11e60d5b5 100644 --- a/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/QBittorrent/QBittorrent.cs @@ -240,8 +240,8 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent switch (torrent.State) { - case "error": // some error occurred, applies to paused torrents - item.Status = DownloadItemStatus.Failed; + case "error": // some error occurred, applies to paused torrents, warning so failed download handling isn't triggered + item.Status = DownloadItemStatus.Warning; item.Message = "qBittorrent is reporting an error"; break;