mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 12:46:23 +00:00
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:
parent
15a9eee66e
commit
d71a8798dc
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue