mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-08 02:34:16 -04:00
Filter out special season on tmdb absolute ordering (#524)
This commit is contained in:
parent
3088a8fc88
commit
9ed662c8c8
@ -583,6 +583,8 @@ class TheMovieDatabase(Provider):
|
|||||||
absgrp = [
|
absgrp = [
|
||||||
ep
|
ep
|
||||||
for grp in sorted(group["groups"], key=lambda x: x["order"])
|
for grp in sorted(group["groups"], key=lambda x: x["order"])
|
||||||
|
# Some shows include specials as the first absolute group (like TenSura)
|
||||||
|
if grp["name"] != "Specials"
|
||||||
for ep in sorted(grp["episodes"], key=lambda x: x["order"])
|
for ep in sorted(grp["episodes"], key=lambda x: x["order"])
|
||||||
]
|
]
|
||||||
season_starts = [
|
season_starts = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user