Skip to content

Commit

Permalink
chore: change rss item title (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoban committed Nov 14, 2022
1 parent d208731 commit 205ad0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/rss.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (s *Server) registerRSSRoutes(g *echo.Group) {
feed.Items = make([]*feeds.Item, len(memoList))
for i, memo := range memoList {
feed.Items[i] = &feeds.Item{
Title: memo.Content,
Title: user.Name + "-memos-" + strconv.Itoa(memo.ID),
Link: &feeds.Link{Href: baseURL + "/m/" + strconv.Itoa(memo.ID)},
Description: memo.Content,
Created: time.Unix(memo.CreatedTs, 0),
Expand Down

0 comments on commit 205ad0f

Please sign in to comment.