From 336e1ac7797322884137fa565943fb79168d58d1 Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Wed, 25 May 2022 12:38:21 +0800 Subject: [PATCH] Fix NotificationUnreadCount (#19802) --- routers/web/user/notification.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/routers/web/user/notification.go b/routers/web/user/notification.go index 08cd1b8b31..282cd956ef 100644 --- a/routers/web/user/notification.go +++ b/routers/web/user/notification.go @@ -14,6 +14,7 @@ import ( "code.gitea.io/gitea/models" "code.gitea.io/gitea/modules/base" "code.gitea.io/gitea/modules/context" + "code.gitea.io/gitea/modules/log" "code.gitea.io/gitea/modules/setting" ) @@ -35,7 +36,7 @@ func GetNotificationCount(c *context.Context) { c.Data["NotificationUnreadCount"] = func() int64 { count, err := models.GetNotificationCount(c.User, models.NotificationStatusUnread) if err != nil { - c.ServerError("GetNotificationCount", err) + log.Error("Unable to GetNotificationCount for user:%-v: %v", c.User, err) return -1 }