mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-16 14:25:02 -05:00
Added code to insure no downloading of duplicates and that it downloads the highest quality from results returned by all providers
This commit is contained in:
parent
41366dcba7
commit
694b210f2d
@ -525,13 +525,22 @@ def searchProviders(queueItem, show, season, episodes, seasonSearch=False, manua
|
|||||||
|
|
||||||
# if there is a redownload that's higher than this then we definitely need to keep looking
|
# if there is a redownload that's higher than this then we definitely need to keep looking
|
||||||
if best_qualities and result.quality == max(best_qualities):
|
if best_qualities and result.quality == max(best_qualities):
|
||||||
|
logger.log(u"Found a highest quality archive match to snatch [" + result.name + "]", logger.DEBUG)
|
||||||
queueItem.results = [result]
|
queueItem.results = [result]
|
||||||
return queueItem
|
return queueItem
|
||||||
|
|
||||||
# if there's no redownload that's higher (above) and this is the highest initial download then we're good
|
# if there's no redownload that's higher (above) and this is the highest initial download then we're good
|
||||||
elif any_qualities and result.quality in any_qualities:
|
elif any_qualities and result.quality in any_qualities:
|
||||||
|
logger.log(u"Found a initial quality match to snatch [" + result.name + "]", logger.DEBUG)
|
||||||
queueItem.results = [result]
|
queueItem.results = [result]
|
||||||
return queueItem
|
return queueItem
|
||||||
|
|
||||||
|
# remove duplicates and insures snatch of highest quality from results
|
||||||
|
for i1, result1 in enumerate(finalResults):
|
||||||
|
for i2, result2 in enumerate(finalResults):
|
||||||
|
if result2.provider.show == show and result2.episodes.sort() == episodes.sort() and len(finalResults) > 1:
|
||||||
|
if result1.quality >= result2.quality:
|
||||||
|
finalResults.pop(i2)
|
||||||
|
|
||||||
queueItem.results = finalResults
|
queueItem.results = finalResults
|
||||||
return queueItem
|
return queueItem
|
||||||
|
Loading…
Reference in New Issue
Block a user