From 91efe608520e6b38396c41964ca4ab921a4979cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Summer=E2=9B=B1?= <57806936+honue@users.noreply.github.com> Date: Tue, 31 Oct 2023 01:48:02 +0800 Subject: [PATCH] =?UTF-8?q?fix(route):=20=E8=B1=86=E7=93=A3=E7=83=AD?= =?UTF-8?q?=E6=92=AD=E5=89=A7=E6=A6=9C=E5=8D=95=20(#13659)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix 豆瓣热播剧榜单 * Update lib/v2/douban/other/list.js --------- --- lib/v2/douban/other/list.js | 2 +- website/docs/routes/social-media.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/v2/douban/other/list.js b/lib/v2/douban/other/list.js index 59cbcd3bf296d0..865168491b38ac 100644 --- a/lib/v2/douban/other/list.js +++ b/lib/v2/douban/other/list.js @@ -23,7 +23,7 @@ module.exports = async (ctx) => { rate: item.rating ? item.rating.value : null, card_subtitle: item.card_subtitle, description: item.cards ? item.cards[0].content : item.abstract, - cover: item.cover_url || item.cover.url, + cover: item.cover_url || item.cover?.url, }); return { title, diff --git a/website/docs/routes/social-media.md b/website/docs/routes/social-media.md index fb60203b808d34..b7b58be4aa0355 100644 --- a/website/docs/routes/social-media.md +++ b/website/docs/routes/social-media.md @@ -1412,6 +1412,11 @@ Country Code | 全球口碑剧集榜 | tv_global_best_weekly | | 国内口碑综艺榜 | show_chinese_best_weekly | | 国外口碑综艺榜 | show_global_best_weekly | +| 热播新剧国产剧 | tv_domestic | +| 热播新剧欧美剧 | tv_american | +| 热播新剧日剧 | tv_japanese | +| 热播新剧韩剧 | tv_korean | +| 热播新剧动画 | tv_animation | | 虚构类小说热门榜 | book_fiction_hot_weekly | | 非虚构类小说热门榜 | book_nonfiction_hot_weekly | | 热门单曲榜 | music_single |