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

Only get DownloadClientId when its been added to history

pull/6/head
Mark McDowall 11 years ago
parent 16356b6319
commit 332136bc6f

@ -124,7 +124,7 @@ namespace NzbDrone.Core.Download
private List<History.History> GetHistoryItems(List<History.History> grabbedHistory, string downloadClientId)
{
return grabbedHistory.Where(h => h.Data.ContainsKey(DOWNLOAD_CLIENT) &&
return grabbedHistory.Where(h => h.Data.ContainsKey(DOWNLOAD_CLIENT_ID) &&
h.Data[DOWNLOAD_CLIENT_ID].Equals(downloadClientId))
.ToList();
}

Loading…
Cancel
Save