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.

Check for node.context

+4 -2
+4 -2
src/Javascript/audio-engine.js
··· 347 347 const t = parseInt(node.getAttribute("data-timestamp"), 10) 348 348 if (t >= timestamp) return 349 349 350 - node.context.disconnect() 351 - node.context = null 350 + if (node.context) { 351 + node.context.disconnect() 352 + node.context = null 353 + } 352 354 353 355 audioElementsContainer.removeChild(node) 354 356 })