mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-07 04:42:58 -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:
@@ -39,22 +39,22 @@ export default {
|
||||
methods: {
|
||||
play: function () {
|
||||
this.$emit('close')
|
||||
webapi.library_genre(this.genre.name).then(({ data }) =>
|
||||
webapi.player_play_uri(data.albums.items.map(a => a.uri).join(','), false)
|
||||
webapi.library_genre_tracks(this.genre.name).then(({ data }) =>
|
||||
webapi.player_play_uri(data.tracks.items.map(a => a.uri).join(','), false)
|
||||
)
|
||||
},
|
||||
|
||||
queue_add: function () {
|
||||
this.$emit('close')
|
||||
webapi.library_genre(this.genre.name).then(({ data }) =>
|
||||
webapi.queue_add(data.albums.items.map(a => a.uri).join(','))
|
||||
webapi.library_genre_tracks(this.genre.name).then(({ data }) =>
|
||||
webapi.queue_add(data.tracks.items.map(a => a.uri).join(','))
|
||||
)
|
||||
},
|
||||
|
||||
queue_add_next: function () {
|
||||
this.$emit('close')
|
||||
webapi.library_genre(this.genre.name).then(({ data }) =>
|
||||
webapi.queue_add_next(data.albums.items.map(a => a.uri).join(','))
|
||||
webapi.library_genre_tracks(this.genre.name).then(({ data }) =>
|
||||
webapi.queue_add_next(data.tracks.items.map(a => a.uri).join(','))
|
||||
)
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user