720pier: implement torznab Limit #4901

This commit is contained in:
Garfield69 2019-03-23 10:26:51 +13:00
parent 87c4f26d02
commit cf03b6e216
1 changed files with 2 additions and 0 deletions

View File

@ -238,6 +238,8 @@ namespace Jackett.Common.Indexers
OnParseError(results.Content, ex);
}
if (query.Limit > 0)
releases = releases.Take(query.Limit).ToList();
return releases;
}
}