fix: 修复单曲循环的情况下歌曲不在当前播放列表时失效的情况
This commit is contained in:
parent
9852feec81
commit
8459494c61
@ -1005,7 +1005,9 @@ class XiaoMusicDevice:
|
|||||||
self.device.play_type == PLAY_TYPE_ALL
|
self.device.play_type == PLAY_TYPE_ALL
|
||||||
or self.device.play_type == PLAY_TYPE_RND
|
or self.device.play_type == PLAY_TYPE_RND
|
||||||
or name == ""
|
or name == ""
|
||||||
or (name not in self._play_list)
|
or (
|
||||||
|
(name not in self._play_list) and self.device.play_type != PLAY_TYPE_ONE
|
||||||
|
)
|
||||||
):
|
):
|
||||||
name = self.get_next_music()
|
name = self.get_next_music()
|
||||||
self.log.info(f"_play_next. name:{name}, cur_music:{self.get_cur_music()}")
|
self.log.info(f"_play_next. name:{name}, cur_music:{self.get_cur_music()}")
|
||||||
|
Loading…
Reference in New Issue
Block a user