From 406cde65db47e429647f86809a28f2dd239b3424 Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Sat, 24 Aug 2019 12:30:13 +0200 Subject: [PATCH] Fix inserimento numero stagione da scaricare --- specials/downloads.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/specials/downloads.py b/specials/downloads.py index 5be208c2..1cbb9483 100644 --- a/specials/downloads.py +++ b/specials/downloads.py @@ -820,9 +820,12 @@ def save_download(item): if item.contentType in ["tvshow", "episode", "season"]: if 'download' in item: - heading = config.get_localized_string(70686) # <- Enter the number of the starting season (for season > 1) + heading = config.get_localized_string(70594) # <- Enter the season number item.dlseason = platformtools.dialog_numeric(0, heading, '') - save_download_tvshow(item) + if item.dlseason: + save_download_tvshow(item) + else: + save_download_tvshow(item) elif item.contentType == "movie": save_download_movie(item)