Skip to content

Commit

Permalink
style: auto format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Oct 26, 2024
1 parent 9916c34 commit 9159997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/routes/rsshub/transform/html.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Specify options (in the format of query string) in parameter \`routeParams\` par
// 补全绝对链接或相对链接
link = link.trim();
if (link && !link.startsWith('http')) {
link = (new URL(link, url)).href;
link = new URL(link, url).href;
}

const descEle = routeParams.get('itemDesc') ? item.find(routeParams.get('itemDesc')) : item;
Expand Down

0 comments on commit 9159997

Please sign in to comment.