From d9bf79d5f84bf3259d82bba489554cdbaab719ff Mon Sep 17 00:00:00 2001 From: Jason Streifling Date: Sun, 7 Apr 2024 19:01:21 +0200 Subject: [PATCH] Add space between first and last name --- cmd/control/rss.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/control/rss.go b/cmd/control/rss.go index e445bc2..867aa92 100644 --- a/cmd/control/rss.go +++ b/cmd/control/rss.go @@ -97,7 +97,7 @@ func GenerateRSS(db *model.DB, title, link, desc string) (*string, error) { channel.Items = append(channel.Items, &rss.Item{ Title: articleTitle, - Author: user.FirstName + user.LastName, + Author: user.FirstName + " " + user.LastName, PubDate: article.Created.Format(time.RFC1123Z), Description: articleDescription, Content: &rss.Content{Value: articleContent},