1
0
Fork 0
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:
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

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