mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-27 19:36:13 +00:00
Fix dynamic widgets
This commit is contained in:
parent
1a1a306831
commit
7eaaa933b7
2 changed files with 12 additions and 4 deletions
|
@ -229,9 +229,18 @@ def browse(media, view_id=None, folder=None, server_id=None):
|
|||
LOG.info("--[ v:%s/%s ] %s", view_id, media, folder)
|
||||
|
||||
if not window('emby_online.bool') and server_id is None:
|
||||
LOG.error("Default server is not online.")
|
||||
|
||||
return
|
||||
monitor = xbmc.Monitor()
|
||||
|
||||
for i in range(300):
|
||||
if window('emby_online.bool'):
|
||||
break
|
||||
elif monitor.waitForAbort(0.1):
|
||||
return
|
||||
else:
|
||||
LOG.error("Default server is not online.")
|
||||
|
||||
return
|
||||
|
||||
folder = folder.lower() if folder else None
|
||||
|
||||
|
@ -376,7 +385,6 @@ def browse(media, view_id=None, folder=None, server_id=None):
|
|||
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_VIDEO_RATING)
|
||||
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_VIDEO_RUNTIME)
|
||||
|
||||
LOG.info(content_type)
|
||||
xbmcplugin.setContent(int(sys.argv[1]), content_type)
|
||||
xbmcplugin.endOfDirectory(int(sys.argv[1]))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue