mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-09 13:39:47 -05:00
[web] Fix issue preventing adding tracks from the artist tracks page
This commit is contained in:
@@ -154,7 +154,10 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
play() {
|
play() {
|
||||||
webapi.player_play_uri(this.tracks_list.items.map((a) => a.uri).join(','), true)
|
webapi.player_play_uri(
|
||||||
|
this.tracks_list.items.map((a) => a.uri).join(','),
|
||||||
|
true
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user