mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-01 22:06:13 +00:00
Disable Audiobooks
Server doesn't have a set structure yet. This feature is broken atm.
This commit is contained in:
parent
65b71b5885
commit
e42e7e5c90
2 changed files with 4 additions and 4 deletions
|
@ -167,7 +167,7 @@ def listing():
|
|||
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', 'homevideos', 'music'):
|
||||
elif xbmc.getCondVisibility('Window.IsActive(Videos)') and node not in ('photos', 'homevideos', 'music', 'audiobooks'):
|
||||
directory(label, path, artwork=artwork, context=context)
|
||||
elif xbmc.getCondVisibility('Window.IsActive(Music)') and node in ('music'):
|
||||
directory(label, path, artwork=artwork, context=context)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue