diff --git a/routes/laosiji/hot.js b/routes/laosiji/hot.js
index e4d84e156..f81ce8b18 100644
--- a/routes/laosiji/hot.js
+++ b/routes/laosiji/hot.js
@@ -12,10 +12,10 @@ module.exports = async (ctx) => {
title: '老司机-24小时热门',
link: 'http://www.laosiji.com/new_web/index.html',
description: '老司机-24小时热门',
- item: data.map(({ title, id, imageInfo, createtime }) => ({
- title,
+ item: data.map(({ title, description, id, imageInfo, createtime }) => ({
+ title: title === '' ? description : title,
link: `http://www.laosiji.com/thread/${id}.html`,
- description: `
`,
+ description: `
${description}`,
pubDate: new Date(createtime).toUTCString(),
})),
};