mirror of
https://github.com/jeffvli/feishin.git
synced 2024-11-20 06:27:09 +01:00
LrcLib.net expects durations in seconds, not ms (#603)
This commit is contained in:
parent
78ac5af178
commit
297d6f0d2e
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user