diff --git a/front/src/EmbedFrame.vue b/front/src/EmbedFrame.vue index ade4717fa..5f6a2f8ce 100644 --- a/front/src/EmbedFrame.vue +++ b/front/src/EmbedFrame.vue @@ -61,7 +61,7 @@ :key="currentIndex" ref="player" class="player" - :options="{loadSprite: false, controls: controls, duration: currentTrack.sources[0].duration}"> + :options="{loadSprite: false, controls: controls, duration: currentTrack.sources[0].duration, autoplay}"> @@ -383,9 +383,6 @@ export default { }, tracks () { this.currentIndex = 0 - if (this.autoplay) { - this.play(this.currentIndex) - } } } }