mirror of
https://codeberg.org/Hyperpipe/Hyperpipe
synced 2025-06-28 21:18:01 +02:00
Hotfix
This commit is contained in:
parent
06295ec49c
commit
000c4e9681
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ export const useData = defineStore('data', () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
function nextTrack() {
|
function nextTrack() {
|
||||||
const now = state.urls.findIndex(s => s.url === state.url);
|
const i = state.urls.findIndex(s => s.url === state.url);
|
||||||
|
|
||||||
if (state.urls[i + 1]) getSong(state.urls[i + 1].url);
|
if (state.urls[i + 1]) getSong(state.urls[i + 1].url);
|
||||||
else if (player.state.loop == 1) {
|
else if (player.state.loop == 1) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue