mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix active listing
This commit is contained in:
parent
cb18f17dbe
commit
8423342371
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ def doMainListing():
|
|||
addDirectoryItem(label, path)
|
||||
elif xbmc.getCondVisibility("Window.IsActive(VideoLibrary)") and node != "photos":
|
||||
addDirectoryItem(label, path)
|
||||
else:
|
||||
elif not xbmc.getCondVisibility("Window.IsActive(VideoLibrary) | Window.IsActive(Pictures) | Window.IsActive(MusicLibrary)"):
|
||||
addDirectoryItem(label, path)
|
||||
|
||||
# experimental live tv nodes
|
||||
|
|
Loading…
Reference in a new issue