mirror of
https://github.com/moparisthebest/SickRage
synced 2024-12-12 19:12:26 -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
|
season = parse_result.season_number
|
||||||
episodes = parse_result.episode_numbers
|
episodes = parse_result.episode_numbers
|
||||||
|
|
||||||
if parse_result.show:
|
showObj = helpers.get_show_by_name(parse_result.series_name)
|
||||||
indexer_id = parse_result.show.indexerid
|
if showObj:
|
||||||
indexer = parse_result.show.indexer
|
indexer_id = showObj.indexerid
|
||||||
|
indexer = showObj.indexer
|
||||||
|
|
||||||
to_return = (indexer_id, indexer, season, episodes, None)
|
to_return = (indexer_id, indexer, season, episodes, None)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user