(artists: Option<Vec<QueryableArtist>>)
| 56 | |
| 57 | #[tracing::instrument(level = "debug", skip(artists))] |
| 58 | pub fn get_artist_string(artists: Option<Vec<QueryableArtist>>) -> String { |
| 59 | artists |
| 60 | .map(|a| a.iter().filter_map(|a| a.artist_name.clone()).join(", ")) |
| 61 | .unwrap_or_default() |
| 62 | } |
no test coverage detected