From 34fb69ab3ed727280b538707e4d3f3755f65a1aa Mon Sep 17 00:00:00 2001 From: Evie Viau Date: Mon, 19 May 2025 20:02:47 -0700 Subject: [PATCH] Use text not mbid for artist name --- src/user/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/user/mod.rs b/src/user/mod.rs index 76c39dc..ccc45eb 100644 --- a/src/user/mod.rs +++ b/src/user/mod.rs @@ -76,7 +76,7 @@ impl Artist { if self.name.is_some() { self.name.clone().unwrap() } else { - self.mbid.clone() + self.text.clone().unwrap() } } } \ No newline at end of file