Skip to content

Commit

Permalink
更新 _worker.js
Browse files Browse the repository at this point in the history
修复url第一条节点与link节点合并的bug
  • Loading branch information
cmliu authored Apr 5, 2024
1 parent 45c8afd commit 95641bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 95641bd

Please sign in to comment.