mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
commit
4b679eab74
2 changed files with 2 additions and 12 deletions
|
@ -160,14 +160,7 @@ def listing():
|
||||||
LOG.debug("--[ listing/%s/%s ] %s", node, label, path)
|
LOG.debug("--[ listing/%s/%s ] %s", node, label, path)
|
||||||
|
|
||||||
if path:
|
if path:
|
||||||
if xbmc.getCondVisibility('Window.IsActive(Pictures)') and node in ('photos', 'homevideos'):
|
|
||||||
directory(label, path, artwork=artwork)
|
|
||||||
elif xbmc.getCondVisibility('Window.IsActive(Videos)') and node not in ('photos', 'music', 'audiobooks'):
|
|
||||||
directory(label, path, artwork=artwork, context=context)
|
directory(label, path, artwork=artwork, context=context)
|
||||||
elif xbmc.getCondVisibility('Window.IsActive(Music)') and node in ('music'):
|
|
||||||
directory(label, path, artwork=artwork, context=context)
|
|
||||||
elif not xbmc.getCondVisibility('Window.IsActive(Videos) | Window.IsActive(Pictures) | Window.IsActive(Music)'):
|
|
||||||
directory(label, path, artwork=artwork)
|
|
||||||
|
|
||||||
for server in servers:
|
for server in servers:
|
||||||
context = []
|
context = []
|
||||||
|
|
|
@ -166,14 +166,11 @@ class Views(object):
|
||||||
def get_libraries(self):
|
def get_libraries(self):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
libraries = self.server.jellyfin.get_media_folders()['Items']
|
libraries = self.server.jellyfin.get_views()['Items']
|
||||||
views = self.server.jellyfin.get_views()['Items']
|
|
||||||
except Exception as error:
|
except Exception as error:
|
||||||
LOG.exception(error)
|
LOG.exception(error)
|
||||||
raise IndexError("Unable to retrieve libraries: %s" % error)
|
raise IndexError("Unable to retrieve libraries: %s" % error)
|
||||||
|
|
||||||
libraries.extend([x for x in views if x['Id'] not in [y['Id'] for y in libraries]])
|
|
||||||
|
|
||||||
return libraries
|
return libraries
|
||||||
|
|
||||||
def get_views(self):
|
def get_views(self):
|
||||||
|
|
Loading…
Reference in a new issue