diff --git a/src/client/response/music_item.rs b/src/client/response/music_item.rs index 4c3ab6c..5757964 100644 --- a/src/client/response/music_item.rs +++ b/src/client/response/music_item.rs @@ -414,7 +414,8 @@ impl MusicListMapper { Ok(MusicEntityType::Playlist) } PageType::Channel => { - Err(format!("channel items unsupported. id: {}", id)) + // There may be broken YT channels from the artist search. They can be skipped. + Ok(MusicEntityType::Artist) } } }