Fix shuffle bug in Artist and Album view

This commit is contained in:
An Phan 2017-01-23 00:27:30 +08:00
parent 35a40aefe0
commit 86de2a3059
No known key found for this signature in database
GPG key ID: 05536BB4BCDC02A2
2 changed files with 4 additions and 2 deletions

View file

@ -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)
},

View file

@ -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)
},