mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix specials -1 bug
This commit is contained in:
parent
26f5fb8d36
commit
a58503c264
1 changed files with 1 additions and 1 deletions
|
@ -1297,7 +1297,7 @@ class TVShows(Items):
|
||||||
season = 1
|
season = 1
|
||||||
episode = item['AbsoluteEpisodeNumber']
|
episode = item['AbsoluteEpisodeNumber']
|
||||||
else:
|
else:
|
||||||
season = -1
|
season = -1 if "Specials" not in item['Path'] else 0
|
||||||
|
|
||||||
# Specials ordering within season
|
# Specials ordering within season
|
||||||
if item.get('AirsAfterSeasonNumber'):
|
if item.get('AirsAfterSeasonNumber'):
|
||||||
|
|
Loading…
Reference in a new issue