mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-10 04:30:25 +02:00
LrcLib.net expects durations in seconds, not ms (#603)
This commit is contained in:
@@ -72,7 +72,7 @@ const getRemoteLyrics = async (song: QueueSong) => {
|
|||||||
const params = {
|
const params = {
|
||||||
album: song.album || song.name,
|
album: song.album || song.name,
|
||||||
artist: song.artistName,
|
artist: song.artistName,
|
||||||
duration: song.duration,
|
duration: song.duration / 1000.0,
|
||||||
name: song.name,
|
name: song.name,
|
||||||
};
|
};
|
||||||
const response = await FETCHERS[source](params);
|
const response = await FETCHERS[source](params);
|
||||||
|
|||||||
Reference in New Issue
Block a user