From 21c206feb717c003b0d99ffef89dd185dec2d888 Mon Sep 17 00:00:00 2001 From: buckmelanoma <43704682+buckmelanoma@users.noreply.github.com> Date: Thu, 14 Mar 2019 22:23:05 -0700 Subject: [PATCH] Raised number of search results returned (#4887) --- src/Jackett.Common/Indexers/Torrentscsv.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/Torrentscsv.cs b/src/Jackett.Common/Indexers/Torrentscsv.cs index 5a27932a2..3d099a282 100644 --- a/src/Jackett.Common/Indexers/Torrentscsv.cs +++ b/src/Jackett.Common/Indexers/Torrentscsv.cs @@ -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 ();