修复排行榜名字右击菜单的播放功能在播放非激活的列表时的列表获取问题
parent
80fc43a075
commit
748a420b64
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
- 过滤tx源某些不支持播放的歌曲,解决播放此类内容会导致意外的问题
|
- 过滤tx源某些不支持播放的歌曲,解决播放此类内容会导致意外的问题
|
||||||
|
|
||||||
|
### 修复
|
||||||
|
|
||||||
|
- 修复排行榜名字右击菜单的播放功能在播放非激活的列表时的列表获取问题
|
||||||
|
|
||||||
### 其他
|
### 其他
|
||||||
|
|
||||||
- 更新electron到v13.6.9
|
- 更新electron到v13.6.9
|
||||||
|
|
|
@ -193,7 +193,6 @@ export default {
|
||||||
case 'play':
|
case 'play':
|
||||||
this.playSongListDetail({
|
this.playSongListDetail({
|
||||||
boardId: board.id,
|
boardId: board.id,
|
||||||
list: [...this.list],
|
|
||||||
id,
|
id,
|
||||||
})
|
})
|
||||||
break
|
break
|
||||||
|
@ -220,8 +219,9 @@ export default {
|
||||||
sourceListId: `board__${boardId}`,
|
sourceListId: `board__${boardId}`,
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
async playSongListDetail({ boardId, id, list }) {
|
async playSongListDetail({ boardId, id }) {
|
||||||
let isPlayingList = false
|
let isPlayingList = false
|
||||||
|
const list = this.tabId == boardId ? [...this.list] : null
|
||||||
if (list?.length) {
|
if (list?.length) {
|
||||||
this.setTempList({
|
this.setTempList({
|
||||||
list,
|
list,
|
||||||
|
|
Loading…
Reference in New Issue