Skip to content

Commit

Permalink
fix rss feed generator i hope
Browse files Browse the repository at this point in the history
  • Loading branch information
SSTPIERRE2 committed Apr 19, 2024
1 parent db3ca01 commit a73a2a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/utils/generateRSSFeed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default async function generateRssFeed() {
title: post.title,
description: post.abstract,
url: `${site_url}/blog/${post.slug}`,
date: post.publishedOn,
date: new Date(post.publishedOn).toISOString(),
categories: post.tags || [],
author: 'Stephen St.Pierre',
});
Expand Down

0 comments on commit a73a2a7

Please sign in to comment.