mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-17 06:45:05 -05:00
Fix for manual and backlog searches to insure maximum results are returned
This commit is contained in:
parent
98e1d67cf9
commit
b8a499b3d3
@ -319,7 +319,7 @@ def searchProviders(queueItem, show, season, episodes, seasonSearch=False, manua
|
||||
logger.ERROR)
|
||||
return []
|
||||
|
||||
for provider in providers:
|
||||
for providerNum, provider in enumerate(providers):
|
||||
foundResults = {provider.name:{}}
|
||||
|
||||
try:
|
||||
@ -523,6 +523,7 @@ def searchProviders(queueItem, show, season, episodes, seasonSearch=False, manua
|
||||
|
||||
finalResults.append(bestResult)
|
||||
|
||||
if manualSearch:
|
||||
logger.log(u"Checking if we should snatch " + bestResult.name, logger.DEBUG)
|
||||
any_qualities, best_qualities = Quality.splitQuality(show.quality)
|
||||
|
||||
@ -538,6 +539,10 @@ def searchProviders(queueItem, show, season, episodes, seasonSearch=False, manua
|
||||
queueItem.results = [bestResult]
|
||||
return queueItem
|
||||
|
||||
# make sure we search every provider for results
|
||||
if providerNum < len(providers):
|
||||
continue
|
||||
|
||||
# remove duplicates and insures snatch of highest quality from results
|
||||
for i1, result1 in enumerate(finalResults):
|
||||
for i2, result2 in enumerate(finalResults):
|
||||
|
Loading…
Reference in New Issue
Block a user