浏览代码

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