mirror of
https://github.com/koel/koel
synced 2025-02-17 22:08:28 +00:00
Fix shuffle bug in Artist and Album view
This commit is contained in:
parent
35a40aefe0
commit
86de2a3059
2 changed files with 4 additions and 2 deletions
|
@ -115,8 +115,9 @@ export default {
|
|||
methods: {
|
||||
/**
|
||||
* Shuffle the songs in the current album.
|
||||
* Overriding the mixin.
|
||||
*/
|
||||
shuffle () {
|
||||
shuffleAll () {
|
||||
playback.queueAndPlay(this.album.songs, true)
|
||||
},
|
||||
|
||||
|
|
|
@ -107,8 +107,9 @@ export default {
|
|||
methods: {
|
||||
/**
|
||||
* Shuffle the songs by the current artist.
|
||||
* Overriding the mixin.
|
||||
*/
|
||||
shuffle () {
|
||||
shuffleAll () {
|
||||
playback.queueAndPlay(this.artist.songs, true)
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue