From 31ac759f9202cf839bef34ffb1b87db8f8e68f9f Mon Sep 17 00:00:00 2001 From: DIYgod Date: Tue, 26 Nov 2019 14:43:03 +0800 Subject: [PATCH] fix: bilibili followings_video, close #3489 --- lib/routes/bilibili/followings_video.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/routes/bilibili/followings_video.js b/lib/routes/bilibili/followings_video.js index 09465f028..3f59fe7bf 100644 --- a/lib/routes/bilibili/followings_video.js +++ b/lib/routes/bilibili/followings_video.js @@ -29,7 +29,7 @@ module.exports = async (ctx) => { const item = { title: card_data.title, - description: `${card_data.desc}${!disableEmbed ? `

${utils.iframe(item.aid)}` : ''}
`, + description: `${card_data.desc}${!disableEmbed ? `

${utils.iframe(card_data.aid)}` : ''}
`, pubDate: new Date(card_data.pubdate * 1000).toUTCString(), link: `https://www.bilibili.com/video/av${card_data.aid}`, author: card.desc.user_profile.info.uname,