From e79e1fdf45411acd165ddc63e070a707c5401a11 Mon Sep 17 00:00:00 2001 From: m15o Date: Sun, 20 Feb 2022 08:08:16 +0100 Subject: [PATCH] Fix atom link --- web/handler/feed_show.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/handler/feed_show.go b/web/handler/feed_show.go index 5127ff3..e73c564 100644 --- a/web/handler/feed_show.go +++ b/web/handler/feed_show.go @@ -69,7 +69,7 @@ func createAtomEntryFromStatus(status model.Status) *Entry { Link: []Link{ { Rel: "alternate", - Href: fmt.Sprintf("https://status.cafe/status/%d", status.Id), + Href: fmt.Sprintf("https://status.cafe/statuses/%d", status.Id), Type: "text/html", }, },