Update lyrics.py

This commit is contained in:
Choco
2025-03-05 11:31:37 +08:00
parent 4a9c26e326
commit fbe6196228

View File

@@ -232,7 +232,7 @@ class Lrclib(LyricsPlatform):
return []
async def get_lyrics(self, title, artist):
params = {"q": f"{title} - {artist}"}
params = {"q": title}
result = await self.get(LRCLIB_ENDPOINT + "search", params)
if result:
return {"default": result[0].get("plainLyrics", "")}