mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-09 21:49:48 -05:00
[web-src] genre play/add to Q uses genre track lists and not the album tracks (which may incl tracks of other genres)
This commit is contained in:
@@ -76,7 +76,9 @@ export default {
|
||||
},
|
||||
|
||||
play: function () {
|
||||
webapi.player_play_uri(this.genre_albums.items.map(a => a.uri).join(','), true)
|
||||
webapi.library_genre_tracks(this.name).then(({ data }) =>
|
||||
webapi.player_play_uri(data.tracks.items.map(a => a.uri).join(','), true)
|
||||
)
|
||||
},
|
||||
|
||||
open_album: function (album) {
|
||||
|
||||
Reference in New Issue
Block a user