Browse Source

refactor(EditSong): unpause when clicking on the seekerbar

Kristian Vos 2 năm trước cách đây
mục cha
commit
268484347f
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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() {