From 433d33f545de4057e522f9a82e81696def5994c4 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Sat, 12 Sep 2020 19:16:10 +0200 Subject: [PATCH] Fix Locandine in Videoteca --- specials/videolibrary.py | 1 + 1 file changed, 1 insertion(+) diff --git a/specials/videolibrary.py b/specials/videolibrary.py index 73b93c00..252e945c 100644 --- a/specials/videolibrary.py +++ b/specials/videolibrary.py @@ -155,6 +155,7 @@ def get_results(nfo_path, root, Type, local=False): sep = '/' if '/' in nfo_path else '\\' item.extra = filetools.join(config.get_setting("videolibrarypath"), config.get_setting(folder), item.path.split(sep)[-1]) strm_path = item.strm_path.replace("\\", "/").rstrip("/") + if not item.thumbnail: item.thumbnail = item.infoLabels['thumbnail'] if '/' in item.path: item.strm_path = strm_path # If strm has been removed from kodi library, don't show it if not filetools.exists(filetools.join(item.path, filetools.basename(strm_path))) and not local: return Item(), 0