修复潜在更新问题

pull/930/merge
lyswhut 2022-04-02 14:26:31 +08:00
parent 47d3c50863
commit 92351049f1
1 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,9 @@ export default () => {
if (!waitUpdateLists.length) return
const targetListInfo = waitUpdateLists.shift()
// console.log(targetListInfo)
await syncSourceList(targetListInfo)
try {
await syncSourceList(targetListInfo)
} catch {}
handleSyncSourceList(waitUpdateLists)
}