diff --git a/src/main/features/core/lyrics/index.ts b/src/main/features/core/lyrics/index.ts index c26cb853..c3fc781e 100644 --- a/src/main/features/core/lyrics/index.ts +++ b/src/main/features/core/lyrics/index.ts @@ -72,7 +72,7 @@ const getRemoteLyrics = async (song: QueueSong) => { const params = { album: song.album || song.name, artist: song.artistName, - duration: song.duration, + duration: song.duration / 1000.0, name: song.name, }; const response = await FETCHERS[source](params);