From 8dbd306657360b8e8ae4fcb964b2cb0070561c18 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Thu, 16 Apr 2020 08:33:05 +0200 Subject: [PATCH] Fix viste, Serie TV, Stagione, Episodio --- platformcode/platformtools.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/platformcode/platformtools.py b/platformcode/platformtools.py index 7aa39ed7..fe7382e9 100644 --- a/platformcode/platformtools.py +++ b/platformcode/platformtools.py @@ -257,13 +257,13 @@ def set_view_mode(item, parent_item): elif (item.contentType in ['tvshow'] and parent_item.action in ['peliculas']) \ or (item.channel in ['videolibrary'] and parent_item.action in ['list_tvshows']): - mode('tvshow', 'tvshow') + mode('tvshow', 'tvshows') elif parent_item.action in ['get_seasons']: - mode('season', 'tvshow') + mode('season', 'tvshows') elif parent_item.action in ['episodios', 'get_episodes']: - mode('episode', 'tvshow') + mode('episode', 'tvshows') elif parent_item.action == 'findvideos': mode('server', 'addons')