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

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