From 4ac3c35b55cf9d99c12e1584bad5f57728c8ed0d Mon Sep 17 00:00:00 2001 From: zonemeen Date: Fri, 9 Jun 2023 11:22:09 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20kuwo=E6=9C=8D=E5=8A=A1=E6=AD=8C=E8=AF=8D?= =?UTF-8?q?=E9=93=BE=E6=8E=A5=E8=AF=B7=E6=B1=82=E6=8A=A5=E9=94=99=E9=80=80?= =?UTF-8?q?=E5=87=BA=E8=BF=9B=E7=A8=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/qrcode/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qrcode/index.ts b/src/qrcode/index.ts index abbf6c80e..4c2d7eba0 100644 --- a/src/qrcode/index.ts +++ b/src/qrcode/index.ts @@ -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 }) })