1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-08-13 16:53:54 -04:00

Fix for looping issue during backlog searches

This commit is contained in:
echel0n 2014-05-12 12:48:47 -07:00
parent 7d6e73f026
commit 1d339b97f6

View File

@ -258,6 +258,10 @@ class GenericProvider:
else:
searchItems[epObj] = itemList
# if we have cached results return them.
if len(results):
return results
for ep_obj, items in searchItems.items():
for item in items: