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

Using a tiered fallback is safer in case there is another data-loss and ids get reset.

pull/3113/head
Taloth Saldono 9 years ago
parent e2d6d374ab
commit c249ad5dbe

@ -25,18 +25,18 @@ namespace NzbDrone.Core.Indexers.BroadcastheNet
{
var pageableRequests = new IndexerPageableRequestChain();
var parameters = new BroadcastheNetTorrentQuery();
if (LastRecentTorrentID.HasValue)
{
parameters.Id = ">=" + (LastRecentTorrentID.Value - 100);
}
else
pageableRequests.Add(GetPagedRequests(MaxPages, new BroadcastheNetTorrentQuery()
{
parameters.Age = "<=86400";
Id = ">=" + (LastRecentTorrentID.Value - 100)
}));
}
pageableRequests.Add(GetPagedRequests(MaxPages, parameters));
pageableRequests.AddTier(GetPagedRequests(MaxPages, new BroadcastheNetTorrentQuery()
{
Age = "<=86400"
}));
return pageableRequests;
}

Loading…
Cancel
Save