trailing slash

This commit is contained in:
Niko Abeler 2023-07-20 19:56:43 +02:00
parent 128e38651d
commit e31dbeb18c
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ func RenderRSSFeed(config model.SiteConfig, entries []model.Entry) (string, erro
for _, entry := range entries {
content := entry.Content()
url, _ := url.JoinPath(config.FullUrl, "/posts/", entry.ID())
url, _ := url.JoinPath(config.FullUrl, "/posts/", entry.ID(), "/")
rss.Channel.Items = append(rss.Channel.Items, RSSItem{
Guid: url,
Title: entry.Title(),