LrcLib.net expects durations in seconds, not ms (#603)

This commit is contained in:
Vukanović Stefan
2024-05-02 16:14:10 +02:00
committed by GitHub
parent 78ac5af178
commit 297d6f0d2e
+1 -1
View File
@@ -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);