瀏覽代碼

refactor(EditSong): unpause when clicking on the seekerbar

Kristian Vos 2 年之前
父節點
當前提交
268484347f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      frontend/src/components/modals/EditSong/index.vue

+ 1 - 1
frontend/src/components/modals/EditSong/index.vue

@@ -1532,7 +1532,7 @@ export default {
 			this.settings("play");
 		},
 		seekTo(position) {
-			if (!this.video.paused) this.settings("play");
+			this.settings("play");
 			this.video.player.seekTo(position);
 		},
 		changeVolume() {