mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-05 20:27:52 +08:00
fix: 修复cnbeta内容提取不完整bug (#2334)
* fix: 修复cnbeta内容提取不完整bug * Update utils.js * Update utils.js
This commit is contained in:
@@ -30,9 +30,12 @@ async function load(link) {
|
||||
});
|
||||
|
||||
// 提取内容
|
||||
const description = $('.article-content').html();
|
||||
const description = $('.article-summary p').html() + '<br>' + $('.article-content').html();
|
||||
|
||||
return { description, pubDate };
|
||||
// 稿源
|
||||
const author = $('.source a span').text();
|
||||
|
||||
return { description, pubDate, author };
|
||||
}
|
||||
|
||||
const ProcessFeed = async (list, caches) => {
|
||||
|
||||
Reference in New Issue
Block a user