mirror of
https://github.com/Jackett/Jackett
synced 2025-01-19 14:10:07 +00:00
norbits: fixed no results when the tracker returns one torrent (#7854)
This commit is contained in:
parent
c6f9927afa
commit
8dff433d2e
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue