From abfaa26d612daeac61edfefe2bb657ab3823eb6a Mon Sep 17 00:00:00 2001 From: Chenyang Shi Date: Wed, 10 Apr 2019 11:32:25 +0800 Subject: [PATCH] =?UTF-8?q?feat=20=E6=98=BE=E7=A4=BA=E8=A7=86=E9=A2=91=20(?= =?UTF-8?q?#1905)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit closes #1901 --- lib/routes/zhihu/activities.js | 6 ++++++ 1 file changed, 6 insertions(+) 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('')}`;