fix(metadata): lyrics are now fetched
This commit is contained in:
parent
b6e8068652
commit
111ade245f
1 changed files with 1 additions and 1 deletions
|
|
@ -10,7 +10,7 @@ export function prefetchMetadataObjects(track, api, coverBlob = null) {
|
|||
: coverId
|
||||
? getCoverBlob(api, coverId).catch(console.error)
|
||||
: Promise.resolve(null);
|
||||
const lyricsFetch = LyricsManager.initialize.fetchLyrics?.(track.id, track)?.catch(console.error);
|
||||
const lyricsFetch = LyricsManager.instance.fetchLyrics?.(track.id, track)?.catch(console.error);
|
||||
|
||||
return { coverFetch, lyricsFetch };
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue