From d8a3466914502f85ce7add6ed78e1324ab68b212 Mon Sep 17 00:00:00 2001 From: lyswhut Date: Wed, 29 Apr 2020 16:09:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=92=AD=E6=94=BE=E4=B8=8B?= =?UTF-8?q?=E8=BD=BD=E5=88=97=E8=A1=A8=E6=97=A0=E6=B3=95=E5=88=87=E6=8D=A2?= =?UTF-8?q?=E6=AD=8C=E6=9B=B2=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/renderer/components/core/Player.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/renderer/components/core/Player.vue b/src/renderer/components/core/Player.vue index 96ed8512..53712a06 100644 --- a/src/renderer/components/core/Player.vue +++ b/src/renderer/components/core/Player.vue @@ -363,7 +363,8 @@ export default { list = [] for (const item of this.list) { const filePath = path.join(this.setting.download.savePath, item.fileName) - if ((!await checkPath(filePath) || !item.isComplate || /\.ape$/.test(filePath))) list.push(item) + if (!await checkPath(filePath) || !item.isComplate || /\.ape$/.test(filePath)) continue + list.push(item) } } else { list = this.list.filter(s => this.assertApiSupport(s.source))