diff --git a/src/Jackett.Common/Indexers/NCore.cs b/src/Jackett.Common/Indexers/NCore.cs index 97201461f..5082368aa 100644 --- a/src/Jackett.Common/Indexers/NCore.cs +++ b/src/Jackett.Common/Indexers/NCore.cs @@ -117,7 +117,7 @@ namespace Jackett.Common.Indexers return IndexerConfigurationStatus.RequiresTesting; } - List parseTorrents(WebClientStringResult results, String seasonep, TorznabQuery query, int already_founded) + List parseTorrents(WebClientStringResult results, String seasonep, TorznabQuery query, int already_founded, int limit) { var releases = new List(); try @@ -128,7 +128,7 @@ namespace Jackett.Common.Indexers var rows = dom[".box_torrent_all"].Find(".box_torrent"); // Check torrents only till we reach the query Limit - for(int i=0; (i("oldal", i.ToString())); results = await PostDataWithCookiesAndRetry(SearchUrl, pairs); - releases.AddRange(parseTorrents(results, seasonep, query, releases.Count)); + releases.AddRange(parseTorrents(results, seasonep, query, releases.Count, limit)); pairs.Remove(new KeyValuePair("oldal", i.ToString())); }