Skip to content

Commit

Permalink
fix: kuwo服务歌词链接请求报错退出进程
Browse files Browse the repository at this point in the history
  • Loading branch information
zonemeen committed Jun 9, 2023
1 parent c553cfa commit 4ac3c35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qrcode/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default async ({
})
)
searchSongs.forEach((song: any, index: number) => {
song.lrc = lyricList[index]
song.lrc = lyricList[index].value ?? '[00:00.00]无歌词'
})
res.send({ searchSongs, totalSongCount })
})
Expand Down

0 comments on commit 4ac3c35

Please sign in to comment.