fix first episode not downloaded and last downloaded twice in anime series (#123)

This commit is contained in:
Francesco Grazioso 2024-05-03 16:18:18 +02:00 committed by GitHub
parent d65865a26c
commit dd239a8e5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,7 @@ class EpisodeDownloader:
# For all seasons # For all seasons
elif cmd_insert == "*": elif cmd_insert == "*":
list_season_select = list(range(1, max_count + 1)) list_season_select = list(range(0, max_count))
# Return list of selected seasons # Return list of selected seasons
return list_season_select return list_season_select
@ -165,7 +165,7 @@ class EpisodeDownloader:
ANIME_FOLDER, ANIME_FOLDER,
SERIES_FOLDER, SERIES_FOLDER,
self.tv_name, self.tv_name,
f"{index_select}.mp4", f"{index_select + 1}.mp4",
), ),
) )