From 8dff433d2e9467ef9739a51ede0e0a91be1b3d42 Mon Sep 17 00:00:00 2001 From: ende124 Date: Thu, 26 Mar 2020 04:38:05 +0100 Subject: [PATCH] norbits: fixed no results when the tracker returns one torrent (#7854) --- src/Jackett.Common/Indexers/Norbits.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/Norbits.cs b/src/Jackett.Common/Indexers/Norbits.cs index 1349cdb9e..80e11168c 100644 --- a/src/Jackett.Common/Indexers/Norbits.cs +++ b/src/Jackett.Common/Indexers/Norbits.cs @@ -274,7 +274,7 @@ namespace Jackett.Common.Indexers var pageLinkCount = 1; // Check if we have a minimum of one result - if (firstPageRows?.Length > 1) + if (firstPageRows?.Length >= 1) { // Retrieve total count on our alone page nbResults = firstPageRows.Count();