fix: 修复 tx 搜索结果显示异常的问题(#2753)

This commit is contained in:
lyswhut
2026-04-09 12:47:28 +08:00
parent e36792b76a
commit cc192cab44
2 changed files with 4 additions and 2 deletions

View File

@@ -9,6 +9,7 @@
- 修复桌面歌词的 鼠标移入歌词区域时提高透明度 设置不稳定的问题(#2679, @Little100
- 修复某些情况下可能播放没有声音的问题(#2693
- 修复 tx 搜索结果显示异常的问题(#2753
### 其他

View File

@@ -74,7 +74,7 @@ export default {
})
},
handleResult(rawList) {
// console.log(rawList)
console.log(rawList)
const list = []
rawList.forEach(item => {
if (!item.file?.media_mid) return
@@ -119,7 +119,8 @@ export default {
}
list.push({
singer: formatSingerName(item.singer, 'name'),
name: item.name + (item.title_extra ?? ''),
// name: item.name + (item.title_extra ?? ''),
name: item.title,
albumName,
albumId,
source: 'tx',