diff --git a/lib/routes/zhihu/activities.js b/lib/routes/zhihu/activities.js index fb9b840c6..913ef13d7 100644 --- a/lib/routes/zhihu/activities.js +++ b/lib/routes/zhihu/activities.js @@ -51,6 +51,12 @@ module.exports = async (ctx) => { images.push(`

`); } else if (contentItem.type === 'link') { link = `

${contentItem.title}

`; + } else if (contentItem.type === 'video') { + link = `

`; } }); description = `${text}${link}${images.join('')}`;