diff --git a/changes/changelog.d/464.bugfix b/changes/changelog.d/464.bugfix new file mode 100644 index 0000000000000000000000000000000000000000..cac26750e81e604ae8debb80a4e0d5c45da845b2 --- /dev/null +++ b/changes/changelog.d/464.bugfix @@ -0,0 +1,2 @@ +Do not restart current song when rordering queue, deleting tracks from queue or +adding tracks to queue (#464) diff --git a/front/src/components/audio/Player.vue b/front/src/components/audio/Player.vue index de1adef50a58f9375dd12794f8cb47c595b72d4a..9c918a5fa919753f491318aa7506386585674e89 100644 --- a/front/src/components/audio/Player.vue +++ b/front/src/components/audio/Player.vue @@ -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) { diff --git a/front/src/components/audio/album/Widget.vue b/front/src/components/audio/album/Widget.vue index a52a0dc874375db2c2409d0bfadf7285ca4c5593..1248348c78f42df00234ab2e7cbafde10e8ddc39 100644 --- a/front/src/components/audio/album/Widget.vue +++ b/front/src/components/audio/album/Widget.vue @@ -30,7 +30,7 @@ </div> <div class="extra content"> <human-date class="left floated" :date="album.creation_date"></human-date> - <play-button class="right floated basic icon" :dropdown-only="true" :dropdown-icon-classes="['ellipsis', 'horizontal', 'large', 'grey']" :album="album.id"></play-button> + <play-button class="right floated basic icon" :dropdown-only="true" :is-playable="album.is_playable" :dropdown-icon-classes="['ellipsis', 'horizontal', 'large', 'grey']" :album="album.id"></play-button> </div> </div> </div>