diff --git a/src/renderer/core/useApp/useListAutoUpdate.js b/src/renderer/core/useApp/useListAutoUpdate.js index 3c7ae263..2d65efce 100644 --- a/src/renderer/core/useApp/useListAutoUpdate.js +++ b/src/renderer/core/useApp/useListAutoUpdate.js @@ -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) }