Probabile fix gestione viste (cache attiva)

This commit is contained in:
Alhaziel01
2022-02-05 11:39:44 +01:00
parent 69d5088b85
commit d3240f4b78
+5 -3
View File
@@ -419,10 +419,12 @@ def render_items(itemlist, parent_item):
xbmcplugin.setPluginCategory(handle=_handle, category=breadcrumb) xbmcplugin.setPluginCategory(handle=_handle, category=breadcrumb)
if Type: xbmcplugin.setContent(handle=int(sys.argv[1]), content=Type) 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', 'new_search', 'now_on_tv'] 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)
if mode:
# xbmc.sleep(100)
xbmc.executebuiltin('Container.SetViewMode(%s)' % mode)
from core import db; db.close() from core import db; db.close()
logger.debug('END renderItems') logger.debug('END renderItems')
@@ -435,7 +437,7 @@ def viewmodeMonitor():
parent_info = xbmc.getInfoLabel('Container.FolderPath') parent_info = xbmc.getInfoLabel('Container.FolderPath')
if 'plugin.video.kod' in parent_info: if 'plugin.video.kod' in parent_info:
parent = Item().fromurl(parent_info, silent=True) parent = Item().fromurl(parent_info, silent=True)
item = Item().fromurl(xbmc.getInfoLabel('ListItem.FileNameAndPath'), silent=True) item = Item().fromurl(xbmc.getInfoLabel('Container.ListItemPosition(2).FileNameAndPath'), silent=True)
currentModeName = xbmc.getInfoLabel('Container.Viewmode') currentModeName = xbmc.getInfoLabel('Container.Viewmode')
currentMode = int(xbmcgui.Window(10025).getFocusId()) currentMode = int(xbmcgui.Window(10025).getFocusId())
# logger.debug('SAVE VIEW 1', currentMode, parent.action, item.action) # logger.debug('SAVE VIEW 1', currentMode, parent.action, item.action)