From 95641bda65c1ffeb6edffcac94b847832bbd0d20 Mon Sep 17 00:00:00 2001 From: CMLiussss <24787744+cmliu@users.noreply.github.com> Date: Sat, 6 Apr 2024 00:41:23 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20=5Fworker.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复url第一条节点与link节点合并的bug --- _worker.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_worker.js b/_worker.js index 5987e72..98cc375 100644 --- a/_worker.js +++ b/_worker.js @@ -38,7 +38,7 @@ export default { MainData = env.LINK || MainData; const link = await ADD(MainData); - MainData = link.join('\n'); + MainData = link.join('\n') + '\n'; //console.log(MainData); let links = MainData;