From d5e62119872cdf2b13be31c57d5366ea2cf26fc8 Mon Sep 17 00:00:00 2001 From: zeripath Date: Tue, 15 Sep 2020 07:06:08 +0100 Subject: [PATCH] Fix notifications page links (#12838) 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) }