Skip to content

Commit

Permalink
fix(route): bilibili vsearch (#17064)
Browse files Browse the repository at this point in the history
  • Loading branch information
urzz authored Oct 9, 2024
1 parent b20f9f7 commit 347f84c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/routes/bilibili/vsearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async function handler(ctx) {
`Danmaku: ${item.video_review} Comment: ${item.review}<br/>` +
`<br/>${des}<br/>` +
`<img src="${img}"><br/>` +
`Match By: ${item.hit_columns.join(',')}` +
`Match By: ${item.hit_columns?.join(',') || ''}` +
(disableEmbed ? '' : `<br><br>${utils.iframe(item.aid)}`),
pubDate: parseDate(item.pubdate, 'X'),
guid: item.arcurl,
Expand Down

0 comments on commit 347f84c

Please sign in to comment.