From 65270e02dab0dae8da755541a866b70f6621dea4 Mon Sep 17 00:00:00 2001 From: lyswhut Date: Fri, 6 Jan 2023 14:49:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AE=9A=E6=97=B6=E5=81=9C?= =?UTF-8?q?=E6=AD=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/renderer/core/player/timeoutStop.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/core/player/timeoutStop.ts b/src/renderer/core/player/timeoutStop.ts index db446711..8c22ef46 100644 --- a/src/renderer/core/player/timeoutStop.ts +++ b/src/renderer/core/player/timeoutStop.ts @@ -2,7 +2,7 @@ import { ref, computed, ComputedRef } from '@common/utils/vueTools' import { isPlay } from '@renderer/store/player/state' import { appSetting } from '@renderer/store/setting' // import { interval, intervalCancel } from '@renderer/utils/ipc' -import { stop } from './action' +import { pause } from './action' const time = ref(-1) @@ -25,7 +25,7 @@ const timeoutTools: { exit() { window.lx.isPlayedStop = true if (!appSetting['player.waitPlayEndStop'] && isPlay.value) { - stop() + pause() } }, clearTimeout() {