Skip to content

Commit 8952721

Browse files
authored
fix(route/egsea): 修复e快选因部分条目没有分类导致抓取失败 (#17895)
1 parent 655f7ac commit 8952721

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/routes/egsea/flash.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ async function handler() {
4343
link,
4444
pubDate,
4545
description,
46-
category: item.tags.map((tag) => tag.name),
46+
category: item.tags?.map((tag) => tag.name),
4747
};
4848
});
4949

0 commit comments

Comments
 (0)