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

Fixed: Fetching multiple pages for kickass to get more releases on the recent/rss feed due to small page size.

pull/2/head
Taloth Saldono 10 years ago
parent 92a23d0f8b
commit e98a174884

@ -24,7 +24,8 @@ namespace NzbDrone.Core.Indexers.KickassTorrents
{
var pageableRequests = new List<IEnumerable<IndexerRequest>>();
pageableRequests.AddIfNotNull(GetPagedRequests(1, "tv"));
// We give kat a bit more pages to get to 100 total for recent, coz users have been missing releases.
pageableRequests.AddIfNotNull(GetPagedRequests(4, "tv"));
return pageableRequests;
}

Loading…
Cancel
Save