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

Fix for post-processing issue of not being enough info

This commit is contained in:
echel0n 2014-05-03 03:59:05 -07:00
parent e8fc45058f
commit b6f7753ec7

View File

@ -498,9 +498,10 @@ class PostProcessor(object):
season = parse_result.season_number
episodes = parse_result.episode_numbers
if parse_result.show:
indexer_id = parse_result.show.indexerid
indexer = parse_result.show.indexer
showObj = helpers.get_show_by_name(parse_result.series_name)
if showObj:
indexer_id = showObj.indexerid
indexer = showObj.indexer
to_return = (indexer_id, indexer, season, episodes, None)