From c6d9fc1e4a09e1bbd12425cb4c16f1db7d8789cc Mon Sep 17 00:00:00 2001 From: Andry Yosua Date: Sat, 20 May 2023 03:23:00 +0700 Subject: [PATCH] fix shuffle on series item context menu **Steps** - Open Jellycon - Go to shows / tvshows items, either - `Jellyfin Libraries` > `Shows` > `Shows - Show All` - `Global Lists` > `TV Shows` > `Tv Shows - Show All` - Open `context menu` on series item, select `shuffle` **Expected Result** jellycon shuffle series episodes **Actual Result** jellycon not doing anything --- resources/lib/play_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/play_utils.py b/resources/lib/play_utils.py index 38dedaf..c7d4a0c 100644 --- a/resources/lib/play_utils.py +++ b/resources/lib/play_utils.py @@ -286,7 +286,7 @@ def play_file(play_info): *all* items in that parent. * Taking the max queue size setting into account ''' - if result.get("Type") in ["Season", "MusicArtist", "MusicAlbum", + if result.get("Type") in ["Season", "Series", "MusicArtist", "MusicAlbum", "Playlist", "CollectionFolder", "MusicGenre"]: max_queue = int(settings.getSetting('max_play_queue')) log.debug("PlayAllFiles for parent item id: {0}".format(item_id))