Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/67dcfad5dc3c18528e5dc16bc9d3f1b35a7cd1a5?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Sabnzbd Download Client now reports paused items as having unknown remaining time.

pull/4/head
Taloth Saldono 11 years ago
parent cb0f7792f2
commit 67dcfad5dc

@ -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)
{

Loading…
Cancel
Save