From 09d0cf9238ffaf7a06f3913dac890f578ae9578d Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Wed, 6 Jul 2022 16:42:54 +0200 Subject: [PATCH] Update artists.py --- music_assistant/controllers/music/artists.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/controllers/music/artists.py b/music_assistant/controllers/music/artists.py index 59a65e7b..be390e02 100644 --- a/music_assistant/controllers/music/artists.py +++ b/music_assistant/controllers/music/artists.py @@ -183,7 +183,7 @@ class ArtistsController(MediaControllerBase[Artist]): match = {"musicbrainz_id": item.musicbrainz_id} cur_item = await self.mass.database.get_row(self.db_table, match) if not cur_item: - # fallback to matching + # fallback to exact name match # NOTE: we match an artist by name which could theoretically lead to collisions # but the chance is so small it is not worth the additional overhead of grabbing # the musicbrainz id upfront -- 2.34.1