From fd407009272f57a1348fc12823a16e32a4f2d6f7 Mon Sep 17 00:00:00 2001 From: Fatpandac <1779196284@qq.com> Date: Thu, 10 Feb 2022 21:05:19 +0800 Subject: [PATCH] fix(route): weibo get more than 9 pics (#9067) --- lib/routes/weibo/user.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/routes/weibo/user.js b/lib/routes/weibo/user.js index 9655d58da..d0ab6356d 100644 --- a/lib/routes/weibo/user.js +++ b/lib/routes/weibo/user.js @@ -61,6 +61,7 @@ module.exports = async (ctx) => { if (data && data.text) { item.mblog.text = data.text; item.mblog.created_at = parseDate(data.created_at); + item.mblog.pics = data.pics; if (item.mblog.retweeted_status && data.retweeted_status) { item.mblog.retweeted_status.created_at = data.retweeted_status.created_at; }