mirror of
https://github.com/Jackett/Jackett
synced 2025-01-01 04:38:20 +00:00
divxtotal: fix error when the search has exactly 15 results (#7105)
This commit is contained in:
parent
daa1149bd3
commit
6b51888919
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ namespace Jackett.Common.Indexers
|
|||
if (table == null)
|
||||
break;
|
||||
var rows = table.QuerySelectorAll("tr");
|
||||
isLastPage = rows.Length -1 < MaxResultsPerPage; // rows includes the header
|
||||
isLastPage = rows.Length -1 <= MaxResultsPerPage; // rows includes the header
|
||||
var isHeader = true;
|
||||
foreach (var row in rows)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue