From b9184f5192f5114b9beefe2ac898b41e9ae5bf73 Mon Sep 17 00:00:00 2001 From: Dario Date: Thu, 12 Dec 2024 22:26:53 +0100 Subject: [PATCH] Increase EZTV search results (#11887) --- medusa/providers/torrent/json/eztv.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/medusa/providers/torrent/json/eztv.py b/medusa/providers/torrent/json/eztv.py index ffbe3be33c..4090aa0d5b 100644 --- a/medusa/providers/torrent/json/eztv.py +++ b/medusa/providers/torrent/json/eztv.py @@ -54,7 +54,9 @@ def search(self, search_strings, age=0, ep_obj=None, **kwargs): results = [] # Search Params - search_params = {} + search_params = { + 'limit': 100, + } for mode in search_strings: log.debug('Search mode: {0}', mode)