Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/bc438a6a6300f5d997a6989b53b4db7db994a1f4 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Handle SABnzbd Propagating status

pull/3113/head
Mark McDowall 9 years ago
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…
Cancel
Save