mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
Merge pull request #652 from adam111316/fix_airdate_propers
Fix proper searches with ABD and sports
This commit is contained in:
commit
8a12c9306c
1 changed files with 1 additions and 1 deletions
|
@ -131,7 +131,7 @@ class ProperFinder():
|
|||
# populate our Proper instance
|
||||
if parse_result.is_air_by_date or parse_result.is_sports:
|
||||
curProper.season = -1
|
||||
curProper.episode = parse_result.air_date or parse_result.is_sports_air_date
|
||||
curProper.episode = parse_result.air_date or parse_result.sports_air_date
|
||||
else:
|
||||
if parse_result.is_anime:
|
||||
logger.log(u"I am sorry '"+curProper.name+"' seams to be an anime proper seach is not yet suported", logger.DEBUG)
|
||||
|
|
Loading…
Reference in a new issue