diff --git a/src/Jackett.Common/Indexers/DivxTotal.cs b/src/Jackett.Common/Indexers/DivxTotal.cs index e52edcdd9..14e0441ca 100644 --- a/src/Jackett.Common/Indexers/DivxTotal.cs +++ b/src/Jackett.Common/Indexers/DivxTotal.cs @@ -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) {