Pass options argument to fetchLyrics service operation

This commit is contained in:
srgooglo 2025-06-24 20:24:45 +02:00
parent 25e83d61a6
commit 1e8e09bf17

View File

@ -128,7 +128,7 @@ export default class TrackManifest {
} }
serviceOperations = { serviceOperations = {
fetchLyrics: async () => { fetchLyrics: async (options) => {
if (!this._id) { if (!this._id) {
return null return null
} }
@ -137,6 +137,7 @@ export default class TrackManifest {
"resolveLyrics", "resolveLyrics",
this.service, this.service,
this, this,
options,
) )
if (this.overrides) { if (this.overrides) {