divxtotal: fix error when the search has exactly 15 results (#7105)

This commit is contained in:
Diego Heras 2020-02-06 03:28:19 +01:00 committed by GitHub
parent daa1149bd3
commit 6b51888919
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{