Skip to content

Commit

Permalink
Merge pull request #26 from jspsv/dev
Browse files Browse the repository at this point in the history
quickfix: RSS url correction (#24)
  • Loading branch information
alkmst-xyz authored Dec 30, 2022
2 parents d04f3fe + 430f070 commit 3d588e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/api/rss.xml/+server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const render = (posts) => `<?xml version="1.0" encoding="utf-8" ?>
<title>${siteTitle}</title>
<link>${siteURL}</link>
<description>${siteDescription}</description>
<atom:link href="https://${siteURL}/rss.xml" rel="self" type="application/rss+xml"/>
<atom:link href="https://${siteURL}/api/rss.xml" rel="self" type="application/rss+xml"/>
${posts
.map(
(post) => `<item>
Expand Down

0 comments on commit 3d588e8

Please sign in to comment.