Fixed: Qbit torrents treated as failed after error

Closes #4674
This commit is contained in:
Mark McDowall 2021-10-03 00:44:13 -07:00
parent 99843d2876
commit 7e175bf95e
1 changed files with 2 additions and 2 deletions

View File

@ -240,8 +240,8 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
switch (torrent.State) switch (torrent.State)
{ {
case "error": // some error occurred, applies to paused torrents case "error": // some error occurred, applies to paused torrents, warning so failed download handling isn't triggered
item.Status = DownloadItemStatus.Failed; item.Status = DownloadItemStatus.Warning;
item.Message = "qBittorrent is reporting an error"; item.Message = "qBittorrent is reporting an error";
break; break;