diff --git a/publish/changeLog.md b/publish/changeLog.md index 7ac7ffdb..878e2b2b 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -3,3 +3,4 @@ - 修复声音输出设备更改时后的自动暂停播放设置无效的问题 - 重写桌面歌词窗口坐标的计算逻辑,修复桌面歌词移动到最边缘时,某些情况下在启用歌词后会出现窗口偏移的问题(远古bug了) +- 修复随机播放模式下使用稍后播放功能播放我的列表的歌曲时,切换下一曲永远是当前歌曲的问题(#1147) diff --git a/src/renderer/core/player/action.ts b/src/renderer/core/player/action.ts index 5e65d90d..e72130b3 100644 --- a/src/renderer/core/player/action.ts +++ b/src/renderer/core/player/action.ts @@ -135,7 +135,7 @@ const handleRestorePlay = async(restorePlayInfo: LX.Player.SavedPlayInfo) => { setAllStatus(window.i18n.t('lyric__load_error')) }) - if (appSetting['player.togglePlayMethod'] == 'random') addPlayedList({ ...playMusicInfo as LX.Player.PlayMusicInfo }) + if (appSetting['player.togglePlayMethod'] == 'random' && !playMusicInfo.isTempPlay) addPlayedList({ ...playMusicInfo as LX.Player.PlayMusicInfo }) } @@ -160,7 +160,7 @@ const handlePlay = () => { clearLoadTimeout() - if (appSetting['player.togglePlayMethod'] == 'random' && playMusicInfo.listId) addPlayedList({ ...(playMusicInfo as LX.Player.PlayMusicInfo) }) + if (appSetting['player.togglePlayMethod'] == 'random' && !playMusicInfo.isTempPlay) addPlayedList({ ...(playMusicInfo as LX.Player.PlayMusicInfo) }) setMusicUrl(musicInfo)