mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 11:02:21 -05:00
Fix for post-processing issue of not being enough info
This commit is contained in:
parent
e8fc45058f
commit
b6f7753ec7
@ -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 New Issue
Block a user