mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Fixed: Handle SABnzbd Propagating status
This commit is contained in:
parent
4167ffe11a
commit
bc438a6a63
@ -85,7 +85,9 @@ private IEnumerable<DownloadClientItem> GetQueue()
|
||||
|
||||
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 @@ public enum SabnzbdDownloadStatus
|
||||
Running, // Running PP Script
|
||||
Completed,
|
||||
Failed,
|
||||
Deleted
|
||||
Deleted,
|
||||
Propagating
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user