mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 05:59:00 +08:00
fix: add missing link (#1586)
This commit is contained in:
@@ -14,8 +14,8 @@ const ProcessFeed = async (link) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const description = JSON.parse(iconv.decode(response.data, 'gbk')).content;
|
const description = JSON.parse(iconv.decode(response.data, 'gbk')).content;
|
||||||
|
link = `http://www.aisixiang.com${link}`;
|
||||||
response = await axios.get(`http://www.aisixiang.com${link}`, {
|
response = await axios.get(link, {
|
||||||
responseType: 'arraybuffer',
|
responseType: 'arraybuffer',
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -38,6 +38,7 @@ const ProcessFeed = async (link) => {
|
|||||||
author: title.split('/')[0] || '',
|
author: title.split('/')[0] || '',
|
||||||
description,
|
description,
|
||||||
pubDate,
|
pubDate,
|
||||||
|
link,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user