From 08946ebc19247df99ed0a6a8f06a908a00aeffc8 Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Fri, 28 Feb 2020 16:37:15 +0100 Subject: [PATCH] Fix Nuovi Episodi Anime (Rinumerazione) --- core/videolibrarytools.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/videolibrarytools.py b/core/videolibrarytools.py index 099a0bf1..04e38173 100644 --- a/core/videolibrarytools.py +++ b/core/videolibrarytools.py @@ -461,13 +461,14 @@ def save_tvshow(item, episodelist): item.infoLabels['title'] = item.contentSerieName item_tvshow = Item(title=item.contentSerieName, channel="videolibrary", action="get_seasons", fanart=item.infoLabels['fanart'], thumbnail=item.infoLabels['thumbnail'], - infoLabels=item.infoLabels, path=path.replace(TVSHOWS_PATH, "")) + infoLabels=item.infoLabels, path=path.replace(TVSHOWS_PATH, ""), fulltitle=item.fulltitle) item_tvshow.library_playcounts = {} item_tvshow.library_urls = {item.channel: item.url} else: # Si existe tvshow.nfo, pero estamos aƱadiendo un nuevo canal actualizamos el listado de urls head_nfo, item_tvshow = read_nfo(tvshow_path) + item_tvshow.fulltitle = item.fulltitle item_tvshow.channel = "videolibrary" item_tvshow.action = "get_seasons" item_tvshow.library_urls[item.channel] = item.url