diff --git a/server.py b/server.py index 2f23aa2..459d9d1 100644 --- a/server.py +++ b/server.py @@ -2380,6 +2380,10 @@ async def list_media( if content_hash not in user_hashes: continue + # Skip recipes - they have their own section + if cached_file.node_type == "recipe": + continue + meta = await database.load_item_metadata(content_hash, ctx.actor_id) # Apply folder filter @@ -3790,6 +3794,10 @@ async def ui_media_list( if content_hash not in user_hashes: continue + # Skip recipes - they have their own section + if cached_file.node_type == "recipe": + continue + # Load metadata for filtering meta = await database.load_item_metadata(content_hash, ctx.actor_id)