You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i got this little script to play audio from libspotify. even though it was flaky from the get go, two days ago it completely stopped working. according to the trace file, there's still stuff happening, but spotify.createFromLink(uri) never loads...
const album = spotify.createFromLink(u)
if (!album) return queueNext(resume)
if (album.isLoaded) return albumIsLoaded(album)
spotify.waitForLoaded([album], albumIsLoaded)
function albumIsLoaded (loadedAlbum) { ... never called ...}
what am i doing wrong?
> node -v
v6.6.0
The text was updated successfully, but these errors were encountered:
hi there,
i got this little script to play audio from libspotify. even though it was flaky from the get go, two days ago it completely stopped working. according to the trace file, there's still stuff happening, but
spotify.createFromLink(uri)
never loads...what am i doing wrong?
The text was updated successfully, but these errors were encountered: