From 6b51888919e9fec95c6584e407ab18d22aa4494c Mon Sep 17 00:00:00 2001 From: Diego Heras Date: Thu, 6 Feb 2020 03:28:19 +0100 Subject: [PATCH] divxtotal: fix error when the search has exactly 15 results (#7105) --- src/Jackett.Common/Indexers/DivxTotal.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {