Use text not mbid for artist name

This commit is contained in:
Evie Viau-Chow-Stuart 2025-05-19 20:02:47 -07:00
parent a8d09b008d
commit 34fb69ab3e
Signed by: evie
GPG key ID: 928652CDFCEC8099

View file

@ -76,7 +76,7 @@ impl Artist {
if self.name.is_some() {
self.name.clone().unwrap()
} else {
self.mbid.clone()
self.text.clone().unwrap()
}
}
}