Fix Non mostra errore se annullata sceltta della numerazione

This commit is contained in:
Alhaziel01
2021-02-03 19:00:14 +01:00
parent 5cc9f96b4b
commit 15f96768c4

View File

@@ -502,7 +502,7 @@ def save_tvshow(item, episodelist, silent=False):
logger.debug("Creating tvshow.nfo: " + tvshow_path)
head_nfo = scraper.get_nfo(item, search_groups=True)
if not head_nfo:
return 0, 0, 0, path
return None, None, None, None
item.infoLabels['mediatype'] = "tvshow"
item.infoLabels['title'] = item.contentSerieName
item_tvshow = Item(title=item.contentSerieName, channel="videolibrary", action="get_seasons",
@@ -1103,6 +1103,9 @@ def add_tvshow(item, channel=None):
magnet_caching = False
insertados, sobreescritos, fallidos, path = save_tvshow(item, itemlist)
if all(val == None for val in [insertados, sobreescritos, fallidos, path]):
return
if not insertados and not sobreescritos and not fallidos:
filetools.rmdirtree(path)
platformtools.dialog_ok(config.get_localized_string(30131), config.get_localized_string(60067) % item.show)