Bug found and fixed in New Show search related to improperly requesting list of indexers to search through

This commit is contained in:
echel0n 2014-03-26 19:18:15 -07:00
parent dd58028ba6
commit 8742b5825f
1 changed files with 1 additions and 1 deletions

View File

@ -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)