diff --git a/addons/lyrics.py b/addons/lyrics.py index ca1583b..06cf0f0 100644 --- a/addons/lyrics.py +++ b/addons/lyrics.py @@ -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", "")}