From cbda838dde9c1f6f3dd8d658cfd97e79e5efef05 Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Thu, 30 Sep 2021 07:31:38 +1300 Subject: [PATCH] Bit-Titan: fetch 50 results which is the max currently despite with the API docs on the site state. --- src/Jackett.Common/Indexers/BitTitan.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/BitTitan.cs b/src/Jackett.Common/Indexers/BitTitan.cs index cf648f528..7b6cd4ea7 100644 --- a/src/Jackett.Common/Indexers/BitTitan.cs +++ b/src/Jackett.Common/Indexers/BitTitan.cs @@ -178,7 +178,7 @@ namespace Jackett.Common.Indexers searchUrl += "&downloadLink=1"; - searchUrl += "&limit=4"; + searchUrl += "&limit=2"; if (((BoolConfigurationItem)configData.GetDynamic("freeleech")).Value) searchUrl += "&searchIn=9";