mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -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
|
||||
# ignore specials not specified in the absgrp
|
||||
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(
|
||||
x["season_number"] == s.season_number
|
||||
and (
|
||||
|
Loading…
x
Reference in New Issue
Block a user