Browse Source

refactor(EditSong): unpause when clicking on the seekerbar

Kristian Vos 2 years ago
parent
commit
268484347f
1 changed files with 1 additions and 1 deletions
  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() {