mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/lyswhut/lx-music-desktop.git
synced 2026-09-20 08:04:00 +08:00
fix: 修复 tx 搜索结果显示异常的问题(#2753)
This commit is contained in:
@@ -9,6 +9,7 @@
|
|||||||
|
|
||||||
- 修复桌面歌词的 鼠标移入歌词区域时提高透明度 设置不稳定的问题(#2679, @Little100)
|
- 修复桌面歌词的 鼠标移入歌词区域时提高透明度 设置不稳定的问题(#2679, @Little100)
|
||||||
- 修复某些情况下可能播放没有声音的问题(#2693)
|
- 修复某些情况下可能播放没有声音的问题(#2693)
|
||||||
|
- 修复 tx 搜索结果显示异常的问题(#2753)
|
||||||
|
|
||||||
### 其他
|
### 其他
|
||||||
|
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
handleResult(rawList) {
|
handleResult(rawList) {
|
||||||
// console.log(rawList)
|
console.log(rawList)
|
||||||
const list = []
|
const list = []
|
||||||
rawList.forEach(item => {
|
rawList.forEach(item => {
|
||||||
if (!item.file?.media_mid) return
|
if (!item.file?.media_mid) return
|
||||||
@@ -119,7 +119,8 @@ export default {
|
|||||||
}
|
}
|
||||||
list.push({
|
list.push({
|
||||||
singer: formatSingerName(item.singer, 'name'),
|
singer: formatSingerName(item.singer, 'name'),
|
||||||
name: item.name + (item.title_extra ?? ''),
|
// name: item.name + (item.title_extra ?? ''),
|
||||||
|
name: item.title,
|
||||||
albumName,
|
albumName,
|
||||||
albumId,
|
albumId,
|
||||||
source: 'tx',
|
source: 'tx',
|
||||||
|
|||||||
Reference in New Issue
Block a user