From 92351049f1f1674e82dc0b4da17172c869bc2559 Mon Sep 17 00:00:00 2001 From: lyswhut Date: Sat, 2 Apr 2022 14:26:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=BD=9C=E5=9C=A8=E6=9B=B4?= =?UTF-8?q?=E6=96=B0=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/renderer/core/useApp/useListAutoUpdate.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) }