pull/2369/head
QiuLiang-99 2025-05-02 14:55:14 +08:00
parent 366f248b75
commit 8fd7fa208f
1 changed files with 1 additions and 1 deletions

View File

@ -339,7 +339,7 @@ export const getNextPlayMusicInfo = async(): Promise<LX.Player.PlayMusicInfo | n
nextIndex = playerIndex === filteredList.length - 1 ? 0 : playerIndex + 1
break
case 'random':
nextIndex = getRandom(0, filteredList.length)
nextIndex = getRandom(0, filteredList.length)//todo
break
case 'list':
nextIndex = playerIndex === filteredList.length - 1 ? -1 : playerIndex + 1