Parcourir la source

fix: temporarily fixed issue with EditSong stopping when time expired

Kristian Vos il y a 5 ans
Parent
commit
18bd0a6c1b
1 fichiers modifiés avec 1 ajouts et 3 suppressions
  1. 1 3
      frontend/components/Modals/EditSong.vue

+ 1 - 3
frontend/components/Modals/EditSong.vue

@@ -526,9 +526,7 @@ export default {
 			if (
 				_this.video.paused === false &&
 				_this.playerReady &&
-				_this.getCurrentTime().then(time => {
-					return time;
-				}) -
+				_this.video.player.getCurrentTime() -
 					_this.editing.song.skipDuration >
 					_this.editing.song.duration
 			) {