Skip to content

Commit

Permalink
fix(route/egsea): 修复e快选因部分条目没有分类导致抓取失败 (#17895)
Browse files Browse the repository at this point in the history
  • Loading branch information
ueiu authored Dec 15, 2024
1 parent 655f7ac commit 8952721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/routes/egsea/flash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ async function handler() {
link,
pubDate,
description,
category: item.tags.map((tag) => tag.name),
category: item.tags?.map((tag) => tag.name),
};
});

Expand Down

0 comments on commit 8952721

Please sign in to comment.