mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
divxtotal: fix error when the search has exactly 15 results (#7105)
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user