[web] Fix issue preventing adding tracks from the artist tracks page
This commit is contained in:
parent
adf9e8c969
commit
ea3975753d
|
@ -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
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue