From bc438a6a6300f5d997a6989b53b4db7db994a1f4 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 26 Oct 2016 21:09:53 -0700 Subject: [PATCH] Fixed: Handle SABnzbd Propagating status --- src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs | 4 +++- .../Download/Clients/Sabnzbd/SabnzbdDownloadStatus.cs | 3 ++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs b/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs index 933ff2d31..89de6f527 100644 --- a/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs +++ b/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs @@ -85,7 +85,9 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd queueItem.RemainingTime = null; } - else if (sabQueueItem.Status == SabnzbdDownloadStatus.Queued || sabQueueItem.Status == SabnzbdDownloadStatus.Grabbing) + else if (sabQueueItem.Status == SabnzbdDownloadStatus.Queued || + sabQueueItem.Status == SabnzbdDownloadStatus.Grabbing || + sabQueueItem.Status == SabnzbdDownloadStatus.Propagating) { queueItem.Status = DownloadItemStatus.Queued; } diff --git a/src/NzbDrone.Core/Download/Clients/Sabnzbd/SabnzbdDownloadStatus.cs b/src/NzbDrone.Core/Download/Clients/Sabnzbd/SabnzbdDownloadStatus.cs index 948de9bc8..2f66aaef4 100644 --- a/src/NzbDrone.Core/Download/Clients/Sabnzbd/SabnzbdDownloadStatus.cs +++ b/src/NzbDrone.Core/Download/Clients/Sabnzbd/SabnzbdDownloadStatus.cs @@ -17,6 +17,7 @@ Running, // Running PP Script Completed, Failed, - Deleted + Deleted, + Propagating } }