mirror of
https://github.com/home-assistant/core.git
synced 2025-08-06 06:05:10 +02:00
Fix issue in with jellyfin during browsing (#143478)
This commit is contained in:
@@ -73,7 +73,7 @@ async def build_root_response(
|
|||||||
children = [
|
children = [
|
||||||
await item_payload(hass, client, user_id, folder)
|
await item_payload(hass, client, user_id, folder)
|
||||||
for folder in folders["Items"]
|
for folder in folders["Items"]
|
||||||
if folder["CollectionType"] in SUPPORTED_COLLECTION_TYPES
|
if folder.get("CollectionType") in SUPPORTED_COLLECTION_TYPES
|
||||||
]
|
]
|
||||||
|
|
||||||
return BrowseMedia(
|
return BrowseMedia(
|
||||||
|
Reference in New Issue
Block a user