fix: ignore channels in YTM search

This commit is contained in:
ThetaDev 2022-11-07 23:03:46 +01:00
parent c263ba2345
commit 6d0302d3bf

View file

@ -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)
}
}
}