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

fix: add missing $hasEnded action

+2
+2
src/components/engine/audio/element.js
··· 57 57 seek: { strategy: "leaderOnly", fn: this.seek }, 58 58 supply: { strategy: "replicate", fn: this.supply }, 59 59 60 + setHasEnded: { strategy: "replicate", fn: this.$hasEnded.set }, 60 61 setIsPlaying: { strategy: "replicate", fn: this.$isPlaying.set }, 61 62 }, 62 63 ); ··· 68 69 this.seek = actions.seek; 69 70 this.supply = actions.supply; 70 71 72 + this.$hasEnded.set = actions.setHasEnded; 71 73 this.$isPlaying.set = actions.setIsPlaying; 72 74 } 73 75 }