Skip to content

Commit

Permalink
js: rss description fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gorenburg committed Dec 28, 2024
1 parent 9f56349 commit c9e5624
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/rss.xml/+server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function GET({ fetch }) {
(post) => `
<item>
<title>${post.title}</title>
<description>${post.description}</description>
<description>${post.description ? post.description : ''}</description>
<link>${config.url}/${post.slug}</link>
<guid isPermaLink="true">${config.url}/${post.slug}</guid>
<pubDate>${new Date(post.date).toUTCString()}</pubDate>
Expand Down

0 comments on commit c9e5624

Please sign in to comment.