소스 검색

fix: temporarily fixed issue with EditSong stopping when time expired

Kristian Vos 5 년 전
부모
커밋
18bd0a6c1b
1개의 변경된 파일1개의 추가작업 그리고 3개의 파일을 삭제
  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
 			) {