Browse Source

Fix for post-processing issue of not being enough info

tags/release_0.1.0
echel0n 11 years ago
parent
commit
b6f7753ec7
  1. 7
      sickbeard/postProcessor.py

7
sickbeard/postProcessor.py

@ -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)

Loading…
Cancel
Save