Merge pull request #78 from imsyy/dev

修复音乐播放器无法获取歌曲名
This commit is contained in:
底层用户 2023-02-07 10:25:45 +08:00 committed by GitHub
commit 1c1e74297f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -124,8 +124,8 @@ onMounted(() => {
//
res.forEach((v) => {
playList.value.push({
title: v.name,
artist: v.artist,
title: v.name || v.title,
artist: v.artist || v.author,
src: v.url,
pic: v.pic,
lrc: v.lrc,