From d34988d172ca082331626d9b7822bb209d4184ce Mon Sep 17 00:00:00 2001 From: Chris Browet Date: Fri, 4 Feb 2022 18:37:28 +0100 Subject: [PATCH] revert ignore folders --- custom_components/jellyfin/media_source.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/custom_components/jellyfin/media_source.py b/custom_components/jellyfin/media_source.py index 7496739..2933f85 100644 --- a/custom_components/jellyfin/media_source.py +++ b/custom_components/jellyfin/media_source.py @@ -247,8 +247,7 @@ async def async_library_items(jelly_cm: JellyfinClientManager, query = { "ParentId": media_content_id, "sortBy": "SortName", - "sortOrder": "Ascending", - "filters": "IsNotFolder" + "sortOrder": "Ascending" } parent_item = await jelly_cm.get_item(media_content_id)