GimmePeers: fix support for Top 20 list (#2360)

modified the ProcessPage Method to select the last table with the browsetable class attribute so that if the Top 20 table is visible it will be ignored and the master list is the only one that will display.  Works with Top 20 on and off.
This commit is contained in:
BenJamin Morin 2018-01-03 12:49:07 -06:00 committed by kaso17
parent 15a9eee66e
commit d71a8798dc
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ namespace Jackett.Indexers
{
CQ dom = results;
var rows = dom[".browsetable tr"]; //the class for the table changed
var rows = dom[".browsetable:last tr"]; //the class for the table changed
foreach (var row in rows.Skip(1))
{
var release = new ReleaseInfo();