Преглед на файлове

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() {