diff --git a/docs/social-media.md b/docs/social-media.md
index bd2fc3344b796c..64961adbd0b71b 100644
--- a/docs/social-media.md
+++ b/docs/social-media.md
@@ -522,7 +522,7 @@ Tiny Tiny RSS 会给所有 iframe 元素添加 `sandbox="allow-scripts"` 属性
### 豆瓣电影人
-
+
### 豆瓣小组
diff --git a/lib/routes/douban/celebrity.js b/lib/routes/douban/celebrity.js
index c533fab4f71674..207a0c5caef2d1 100644
--- a/lib/routes/douban/celebrity.js
+++ b/lib/routes/douban/celebrity.js
@@ -15,10 +15,14 @@ module.exports = async (ctx) => {
const $ = cheerio.load(data); // 使用 cheerio 加载返回的 HTML
const list = $('div.grid_view > ul li'); // 使用 cheerio 选择器
+
+ const person = $('#content > h1')
+ .text()
+ .replace(/的全部作品(\d{1,})/, '');
let itemPicUrl;
ctx.state.data = {
- title: '豆瓣电影-电影人作品',
+ title: `豆瓣电影人 - ${person}`,
link: `https://movie.douban.com/celebrity/${id}/movies?sortby=${sort}`,
item:
list &&