Skip to content

Commit

Permalink
fix(route): 豆瓣热播剧榜单 (#13659)
Browse files Browse the repository at this point in the history
* fix 豆瓣热播剧榜单

* Update lib/v2/douban/other/list.js

---------
  • Loading branch information
honue authored Oct 30, 2023
1 parent 37d6cb0 commit 91efe60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/v2/douban/other/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
5 changes: 5 additions & 0 deletions website/docs/routes/social-media.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down

0 comments on commit 91efe60

Please sign in to comment.