Raised number of search results returned (#4887)

This commit is contained in:
buckmelanoma 2019-03-14 22:23:05 -07:00 committed by garfield69
parent 67d7562882
commit 21c206feb7
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ namespace Jackett.Common.Indexers {
var queryCollection = new NameValueCollection ();
queryCollection.Add ("q", searchString);
queryCollection.Add ("size", "100");
queryCollection.Add ("size", "500");
queryCollection.Add ("type_", "torrent");
var searchUrl = ApiEndpoint + "?" + queryCollection.GetQueryString ();