Merge branch '464-restart-current-song' into 'develop'
Resolve "Clicking on Play Next or add to queue restarts current song" Closes #464 See merge request funkwhale/funkwhale!400
This commit is contained in:
commit
9af8a68b4d
|
@ -0,0 +1,2 @@
|
|||
Do not restart current song when rordering queue, deleting tracks from queue or
|
||||
adding tracks to queue (#464)
|
|
@ -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) {
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue