1
0
Fork 0
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:
ende124 2020-03-26 04:38:05 +01:00 committed by GitHub
parent c6f9927afa
commit 8dff433d2e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();