Browse Source

Fixed issue with EditSong duration setting

Kristian Vos 3 years ago
parent
commit
3d66c90f01
1 changed files with 4 additions and 9 deletions
  1. 4 9
      frontend/src/components/modals/EditSong.vue

+ 4 - 9
frontend/src/components/modals/EditSong.vue

@@ -736,14 +736,12 @@ export default {
 								localStorage.getItem("volume")
 							);
 							volume = typeof volume === "number" ? volume : 20;
-							console.log(`Seekto: ${this.song.skipDuration}`);
 							this.video.player.seekTo(this.song.skipDuration);
 							this.video.player.setVolume(volume);
 							if (volume > 0) this.video.player.unMute();
 
 							const duration = this.video.player.getDuration();
 
-							console.log(1111, duration.toFixed(3));
 							this.youtubeVideoDuration = duration.toFixed(3);
 							this.youtubeVideoNote = "(~)";
 							this.playerReady = true;
@@ -754,7 +752,10 @@ export default {
 							this.drawCanvas();
 
 							let skipToLast10SecsPressed = false;
-							if (this.skipToLast10SecsPressed) {
+							if (
+								event.data === 1 &&
+								this.skipToLast10SecsPressed
+							) {
 								this.skipToLast10SecsPressed = false;
 								skipToLast10SecsPressed = true;
 							}
@@ -800,12 +801,6 @@ export default {
 								)
 									this.song.duration = newYoutubeVideoDuration;
 
-								console.log(
-									2222,
-									newYoutubeVideoDuration,
-									this.video.player.getDuration()
-								);
-
 								this.youtubeVideoDuration = newYoutubeVideoDuration;
 								this.youtubeVideoNote = "";