From 26241511b8d6793f616958a66451e5a676f76f77 Mon Sep 17 00:00:00 2001 From: lyswhut Date: Thu, 2 Sep 2021 16:06:56 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/plugins/player/playList.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/player/playList.js b/src/plugins/player/playList.js index 6c2390f..17467b7 100644 --- a/src/plugins/player/playList.js +++ b/src/plugins/player/playList.js @@ -163,14 +163,14 @@ const debounceUpdateMetaInfoTools = { _track = null isDelayRun = false fn(track) - }, 500) + }, 1000) } else { isDelayRun = true fn(track) delayTimer = BackgroundTimer.setTimeout(() => { delayTimer = null isDelayRun = false - }, 500) + }, 1000) } } },