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

Fixed: Error when attempting to retry a release with nzbget

pull/124/head
Mark McDowall 10 years ago
parent 4e98a447cb
commit 89d0293f6e

@ -127,7 +127,7 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
public void RetryDownload(string id, NzbgetSettings settings)
{
var history = GetHistory(settings);
var item = history.SingleOrDefault(h => h.Parameters.SingleOrDefault(p => p.Name == "drone") != null);
var item = history.SingleOrDefault(h => h.Parameters.SingleOrDefault(p => p.Name == "drone" && id == (p.Value as string)) != null);
if (item == null)
{

Loading…
Cancel
Save