mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-04 11:59:18 +02:00
Fix #464: Do not restart current song when rordering queue, deleting tracks from queue or
adding tracks to queue
This commit is contained in:
parent
07830506a8
commit
c8a2531580
3 changed files with 5 additions and 3 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue