LrcLib.net expects durations in seconds, not ms (#603)
This commit is contained in:
parent
78ac5af178
commit
297d6f0d2e
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Reference in a new issue