mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 11:02:21 -05:00
Merge pull request #553 from WebSpider/dev-fix_nonexistent_show
Fix nonexistent show
This commit is contained in:
commit
e2c5f10f36
@ -309,7 +309,12 @@ def filterSearchResults(show, results):
|
||||
return foundResults
|
||||
|
||||
def searchProviders(queueItem, show, season, episodes, seasonSearch=False, manualSearch=False):
|
||||
logger.log(u"Searching for stuff we need from " + show.name + " season " + str(season))
|
||||
if show:
|
||||
logger.log(u"Searching for stuff we need from " + show.name + " season " + str(season))
|
||||
else:
|
||||
logger.log(u"Attempting to search for stuff from nonexistent show. Failing.", logger.ERROR)
|
||||
return False
|
||||
|
||||
finalResults = []
|
||||
didSearch = False
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user