diff --git a/lib/rss.js b/lib/rss.js index 8f25e5fc..62297707 100644 --- a/lib/rss.js +++ b/lib/rss.js @@ -20,8 +20,8 @@ export function generateRss (posts) { posts.forEach(post => { feed.addItem({ title: post.title, - id: `${BLOG.link}/${post.slug}`, - link: `${BLOG.link}/${post.slug}`, + id: `${BLOG.link}/article/${post.slug}`, + link: `${BLOG.link}/article/${post.slug}`, description: post.summary, date: new Date(post?.date?.start_date || post.createdTime) })