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

Configure Feed

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

fix: audio play state issue

+1 -1
+1 -1
src/components/engine/audio/element.js
··· 509 509 if (!state) return false; 510 510 511 511 return state.isPlaying() || state.hasEnded() || 512 - state.currentTime() === state.duration(); 512 + (state.duration() > 0 && state.currentTime() === state.duration()); 513 513 }); 514 514 } 515 515