kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
Fix #145: Radio will now append new track if you delete the last track in queue
rodzic
48c9a8bd55
commit
0e153c0f4d
|
@ -0,0 +1 @@
|
|||
Radio will now append new track if you delete the last track in queue (#145)
|
|
@ -100,6 +100,9 @@ export default {
|
|||
// we play next track, which now have the same index
|
||||
dispatch('currentIndex', index)
|
||||
}
|
||||
if (state.currentIndex + 1 === state.tracks.length) {
|
||||
dispatch('radios/populateQueue', null, {root: true})
|
||||
}
|
||||
},
|
||||
|
||||
resume ({state, dispatch, rootState}) {
|
||||
|
|
Ładowanie…
Reference in New Issue