use user name as update title for rss #15

This commit is contained in:
Umputun
2018-05-13 16:26:27 -05:00
parent 136d8102d4
commit 399d949e5a
+1 -1
View File
@@ -62,7 +62,7 @@ func (s *Rest) toRssFeed(url string, comments []store.Comment) (string, error) {
feed.Items = []*feeds.Item{}
for _, c := range comments {
f := feeds.Item{
Title: "update",
Title: c.User.Name,
Link: &feeds.Link{Href: url},
Description: c.Text,
Created: c.Timestamp,