A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: Don't show playback error when quickly switching out audio nodes

+2
+2
src/Javascript/UI/audio.ts
··· 114 114 audio.muted = false 115 115 116 116 if (audio.readyState === 0) audio.load() 117 + if (!audio.isConnected) return 117 118 118 119 const promise = audio.play() || Promise.resolve() 119 120 120 121 promise.catch((e) => { 122 + if (!audio.isConnected) return /* The node was removed from the DOM, we can ignore this error */ 121 123 const err = "Couldn't play audio automatically. Please resume playback manually." 122 124 console.error(err, e) 123 125 if (app) app.ports.fromAlien.send({ tag: "", data: null, error: err })