From bff8e994aa572b1b82ea25b930f174440a2629d8 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Fri, 14 Jun 2024 08:07:12 +0200 Subject: [PATCH] fix typo --- custom_components/mass/media_player.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/mass/media_player.py b/custom_components/mass/media_player.py index 6d5419ae..5e51ca90 100644 --- a/custom_components/mass/media_player.py +++ b/custom_components/mass/media_player.py @@ -500,7 +500,7 @@ async def _get_item_by_name( # prefer (exact) lookup in the library by name for func in library_functions: result = await func(search=searchname) - for item in result.items: + for item in result: # handle optional artist filter if ( artist