From 64fe224029ea5921ede05cbc38749406ac7ee911 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Sat, 15 Jan 2022 19:40:23 +0100 Subject: [PATCH] Gestione viste per "Adesso in Onda" --- platformcode/platformtools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformcode/platformtools.py b/platformcode/platformtools.py index 1af91ef7..a798364e 100644 --- a/platformcode/platformtools.py +++ b/platformcode/platformtools.py @@ -421,7 +421,7 @@ def render_items(itemlist, parent_item): if Type: xbmcplugin.setContent(handle=int(sys.argv[1]), content=Type) if mode: xbmc.executebuiltin('Container.SetViewMode(%s)' % mode) - xbmcplugin.endOfDirectory(_handle, succeeded=True, updateListing=False, cacheToDisc= True if parent_item.action in ['news', 'search'] else False) + xbmcplugin.endOfDirectory(_handle, succeeded=True, updateListing=False, cacheToDisc= True if parent_item.action in ['news', 'search', 'new_search', 'now_on_tv'] else False) from core import db; db.close()