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

@ -0,0 +1,2 @@
Do not restart current song when rordering queue, deleting tracks from queue or
adding tracks to queue (#464)

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) {

View File

@ -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>