From 408db95dc1af2f1310b1c415d642278144c8516e Mon Sep 17 00:00:00 2001 From: zeripath Date: Tue, 15 Sep 2020 17:53:30 +0100 Subject: [PATCH] Fix notifications page links (#12838) (#12853) Signed-off-by: Andrew Thornton --- routers/user/notification.go | 1 + 1 file changed, 1 insertion(+) diff --git a/routers/user/notification.go b/routers/user/notification.go index 9724c8108..34939d145 100644 --- a/routers/user/notification.go +++ b/routers/user/notification.go @@ -174,6 +174,7 @@ func NotificationStatusPost(c *context.Context) { if c.Written() { return } + c.Data["Link"] = fmt.Sprintf("%snotifications", setting.AppURL) c.HTML(http.StatusOK, tplNotificationDiv) }