mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-03-05 15:15:59 +02:00
Fixed: Handle SABnzbd Propagating status
This commit is contained in:
parent
4167ffe11a
commit
bc438a6a63
@ -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;
|
||||
}
|
||||
|
@ -17,6 +17,7 @@
|
||||
Running, // Running PP Script
|
||||
Completed,
|
||||
Failed,
|
||||
Deleted
|
||||
Deleted,
|
||||
Propagating
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user