refactor!: make artist description optional

This commit is contained in:
ThetaDev 2022-12-16 23:02:50 +01:00
parent 81e913fa85
commit 690388788a
16 changed files with 25 additions and 24 deletions

View file

@ -1924,7 +1924,7 @@ async fn music_related(#[case] id: &str, #[case] full: bool) {
assert!(!album.cover.is_empty(), "got no cover");
let artist = album.artists.first().unwrap();
assert_channel_id(&artist.id.as_ref().unwrap());
assert_channel_id(artist.id.as_ref().unwrap());
assert!(!artist.name.is_empty());
}