Fix #464: Do not restart current song when rordering queue, deleting tracks from queue or

adding tracks to queue
This commit is contained in:
Eliot Berriot 2018-09-07 11:46:20 +02:00
parent 07830506a8
commit c8a2531580
No known key found for this signature in database
GPG key ID: DD6965E2476E5C27
3 changed files with 5 additions and 3 deletions

View file

@ -317,8 +317,8 @@ export default {
}
},
watch: {
currentTrack (newValue) {
if (!this.isShuffling) {
currentTrack (newValue, oldValue) {
if (!this.isShuffling && newValue != oldValue) {
this.audioKey = String(new Date())
}
if (!newValue || !newValue.album.cover) {