From 67dcfad5dc3c18528e5dc16bc9d3f1b35a7cd1a5 Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Sat, 24 May 2014 21:02:25 +0200 Subject: [PATCH] Sabnzbd Download Client now reports paused items as having unknown remaining time. --- src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs b/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs index af3af9a37..998f8876b 100644 --- a/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs +++ b/src/NzbDrone.Core/Download/Clients/Sabnzbd/Sabnzbd.cs @@ -86,6 +86,8 @@ namespace NzbDrone.Core.Download.Clients.Sabnzbd if (sabQueue.Paused || sabQueueItem.Status == SabnzbdDownloadStatus.Paused) { queueItem.Status = DownloadItemStatus.Paused; + + queueItem.RemainingTime = null; } else if (sabQueueItem.Status == SabnzbdDownloadStatus.Queued || sabQueueItem.Status == SabnzbdDownloadStatus.Grabbing) {