diff --git a/modules/feed/src/main/FeedUi.scala b/modules/feed/src/main/FeedUi.scala index 10031b642e32f..c9a2662d46372 100644 --- a/modules/feed/src/main/FeedUi.scala +++ b/modules/feed/src/main/FeedUi.scala @@ -110,13 +110,16 @@ final class FeedUi(helpers: Helpers, atomUi: AtomUi)( title = "Lichess updates feed", updated = ups.headOption.map(_.at) ): up => + val url = s"$netBaseUrl${routes.Feed.index(1)}#${up.id}" frag( - tag("id")(up.id), + tag("id")(url), + tag("author")(tag("name")("Lichess")), tag("published")(atomUi.atomDate(up.at)), + tag("updated")(atomUi.atomDate(up.at)), link( rel := "alternate", tpe := "text/html", - href := s"$netBaseUrl${routes.Feed.index(1)}#${up.id}" + href := url ), tag("title")(up.title), tag("content")(tpe := "html")(convertToAbsoluteHrefs(up.rendered))