Update tag delimiter

This commit is contained in:
Jonas Knobloch 2024-05-12 17:14:40 +02:00
parent c05607934b
commit eb9f92f04a

View File

@ -41,7 +41,7 @@ func getLobstersPostsFromFeed(feedUrl string) (ForumPosts, error) {
posts := make(ForumPosts, 0, len(feed))
for i := range feed {
tags := strings.Join(feed[i].Tags, ",")
tags := strings.Join(feed[i].Tags, ", ")
if tags != "" {
tags = " [" + tags + "]"