Fix specials -1 bug

This commit is contained in:
angelblue05 2016-09-21 02:55:27 -05:00
parent 26f5fb8d36
commit a58503c264
1 changed files with 1 additions and 1 deletions

View File

@ -1297,7 +1297,7 @@ class TVShows(Items):
season = 1
episode = item['AbsoluteEpisodeNumber']
else:
season = -1
season = -1 if "Specials" not in item['Path'] else 0
# Specials ordering within season
if item.get('AirsAfterSeasonNumber'):