mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-20 16:43:43 +00:00
Fix for post-processing issue of not being enough info
This commit is contained in:
parent
e8fc45058f
commit
b6f7753ec7
1 changed files with 4 additions and 3 deletions
|
@ -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…
Reference in a new issue