From 6ab77451513225d5a1431b9f2b1438ac1fc8350e Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Fri, 25 Jul 2025 10:50:00 -0400 Subject: [PATCH] [music] Use found name to look it up --- vrobbler/apps/music/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vrobbler/apps/music/models.py b/vrobbler/apps/music/models.py index 337cc21..731138d 100644 --- a/vrobbler/apps/music/models.py +++ b/vrobbler/apps/music/models.py @@ -229,7 +229,7 @@ class Artist(TimeStampedModel): alt_name = found_name artist = cls.objects.filter( - name=name, musicbrainz_id=musicbrainz_id + name=found_name, musicbrainz_id=musicbrainz_id ).first() if not artist: artist = cls.objects.create(