Fix inserimento numero stagione da scaricare

This commit is contained in:
Alhaziel
2019-08-24 12:30:13 +02:00
parent aebe27dbf9
commit 406cde65db

View File

@@ -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)