Skip to content

Commit

Permalink
fix: change post url in rss
Browse files Browse the repository at this point in the history
  • Loading branch information
kalecream committed Jun 10, 2024
1 parent fd251e4 commit 5d1c24c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/app/feed.xml/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export async function GET() {
posts.map((post) => {
feed.item({
title: post.metadata.title,
guid: `https://sabrinamedwinter.com/${post.slug}`,
url: `https://sabrinamedwinter.com/${post.slug}`,
guid: `https://sabrinamedwinter.com/blog/${post.slug}`,
url: `https://sabrinamedwinter.com/blog/${post.slug}`,
date: post.metadata.update || post.metadata.date,
description: post.metadata.description,
author: 'Sabrina Medwinter',
Expand Down

0 comments on commit 5d1c24c

Please sign in to comment.