调整时间

This commit is contained in:
lyswhut 2021-09-02 16:06:56 +08:00
parent 6f9480d042
commit 26241511b8

View File

@ -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)
}
}
},