Fixed: Qbit torrents treated as failed after error

Closes #4674
pull/4677/head
Mark McDowall 3 years ago
parent 99843d2876
commit 7e175bf95e

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

Loading…
Cancel
Save