diff --git a/lib/routes/pianyuan/app.js b/lib/routes/pianyuan/app.js index 9f4aec3cd..e7cc2fef4 100644 --- a/lib/routes/pianyuan/app.js +++ b/lib/routes/pianyuan/app.js @@ -37,9 +37,11 @@ module.exports = async (ctx) => { .find('td:nth-child(2)') .text(); + const description_simple = description.substr(0, description.indexOf('主演')).replace(text, ''); + items.push({ - title: `[${size}] ${text}`, - description: description, + title: `[${size}] ${description_simple}`, + description: `${description}`, link: link_base + link, }); });