From 4faa4de7f4b219819c77a67849c95fcea6be6f5c Mon Sep 17 00:00:00 2001 From: pipcat Date: Wed, 14 Nov 2018 18:44:09 +0100 Subject: [PATCH] Retoque thumb en alfavoritos --- plugin.video.alfa/channels/alfavorites.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.video.alfa/channels/alfavorites.py b/plugin.video.alfa/channels/alfavorites.py index 6759762a..64ddd571 100644 --- a/plugin.video.alfa/channels/alfavorites.py +++ b/plugin.video.alfa/channels/alfavorites.py @@ -441,7 +441,7 @@ def editar_enlace_thumbnail(item): resource_path = os.path.join(config.get_runtime_path(), 'resources', 'media', 'themes', 'default') for f in sorted(os.listdir(resource_path)): - if f.startswith('thumb_') and f != 'thumb_back.png': + if f.startswith('thumb_') and not f.startswith('thumb_intervenido') and f != 'thumb_back.png': nombre = f.replace('thumb_', '').replace('_', ' ').replace('.png', '') if is_kodi17: it_thumb = xbmcgui.ListItem(nombre)