mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-03 05:34:23 -04:00
Fix tmdb absolute fill for the last episode (#499)
This commit is contained in:
parent
299b3e2328
commit
b2b09c58db
@ -601,7 +601,7 @@ class TheMovieDatabase(Provider):
|
|||||||
for s in show.seasons
|
for s in show.seasons
|
||||||
# ignore specials not specified in the absgrp
|
# ignore specials not specified in the absgrp
|
||||||
if s.season_number > 0
|
if s.season_number > 0
|
||||||
for e in range(1, s.episodes_count)
|
for e in range(1, s.episodes_count + 1)
|
||||||
if not any(
|
if not any(
|
||||||
x["season_number"] == s.season_number
|
x["season_number"] == s.season_number
|
||||||
and (
|
and (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user