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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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);