From 2e0eb94b97d45f11d658eae46c56fc74ea372124 Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Mon, 27 May 2019 09:47:22 +0200 Subject: [PATCH] Fix Download series and episode --- platformcode/platformtools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platformcode/platformtools.py b/platformcode/platformtools.py index 7c17e473..48d8c5df 100644 --- a/platformcode/platformtools.py +++ b/platformcode/platformtools.py @@ -606,14 +606,14 @@ def set_context_commands(item, parent_item): elif item.contentSerieName: # Descargar serie - if item.contentType == "tvshow": + if item.contentType == "tvshow" or 'episode' and item.action in ["episodios"]: context_commands.append((config.get_localized_string(60355), "XBMC.RunPlugin(%s?%s)" % (sys.argv[0], item.clone(channel="downloads", action="save_download", from_channel=item.channel, from_action=item.action).tourl()))) # Descargar episodio - elif item.contentType == "episode": + elif item.contentType == "tvshow" or 'episode' and item.action in ["findvideos"]: context_commands.append((config.get_localized_string(60356), "XBMC.RunPlugin(%s?%s)" % (sys.argv[0], item.clone(channel="downloads", action="save_download", from_channel=item.channel,