Add select artist dialog when multiple artists

This commit is contained in:
Qluxzz
2021-01-09 16:36:18 +01:00
committed by Henrik Friedrichsen
parent 68e51f263d
commit 2b20670743
6 changed files with 92 additions and 20 deletions

View File

@@ -120,8 +120,8 @@ impl ListItem for Playable {
self.as_listitem().album(queue)
}
fn artist(&self) -> Option<Artist> {
self.as_listitem().artist()
fn artists(&self) -> Option<Vec<Artist>> {
self.as_listitem().artists()
}
fn track(&self) -> Option<Track> {