mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
Bug found and fixed in New Show search related to improperly requesting list of indexers to search through
This commit is contained in:
parent
dd58028ba6
commit
8742b5825f
1 changed files with 1 additions and 1 deletions
|
@ -1979,7 +1979,7 @@ class NewHomeAddShows:
|
|||
indexers = sickbeard.indexerApi().indexers if not int(indexer) else [int(indexer or 0)]
|
||||
|
||||
# Query Indexers for each search term and build the list of results
|
||||
for indexer in indexers():
|
||||
for indexer in indexers:
|
||||
lINDEXER_API_PARMS = sickbeard.indexerApi(indexer).api_params.copy()
|
||||
lINDEXER_API_PARMS['custom_ui'] = classes.AllShowsListUI
|
||||
t = sickbeard.indexerApi(indexer).indexer(**lINDEXER_API_PARMS)
|
||||
|
|
Loading…
Reference in a new issue