diff --git a/src/github.com/matrix-org/go-neb/services/rssbot/rssbot.go b/src/github.com/matrix-org/go-neb/services/rssbot/rssbot.go index 301be36..32495c5 100644 --- a/src/github.com/matrix-org/go-neb/services/rssbot/rssbot.go +++ b/src/github.com/matrix-org/go-neb/services/rssbot/rssbot.go @@ -349,7 +349,7 @@ func (s *Service) sendToRooms(cli *gomatrix.Client, feedURL string, feed *gofeed } func itemToHTML(feed *gofeed.Feed, item gofeed.Item) gomatrix.HTMLMessage { - return &gomatrix.HTMLMessage{ + return gomatrix.HTMLMessage{ Body: fmt.Sprintf("%s: %s (%s)", html.EscapeString(feed.Title), html.EscapeString(item.Title), html.EscapeString(item.Link)), MsgType: "m.notice",