aboutsummaryrefslogtreecommitdiffstats
path: root/routers/web/user
diff options
context:
space:
mode:
Diffstat (limited to 'routers/web/user')
-rw-r--r--routers/web/user/notification.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/routers/web/user/notification.go b/routers/web/user/notification.go
index 0b1789dcf8..9e658bcb14 100644
--- a/routers/web/user/notification.go
+++ b/routers/web/user/notification.go
@@ -5,6 +5,7 @@
package user
import (
+ goctx "context"
"errors"
"fmt"
"net/http"
@@ -14,6 +15,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"
"code.gitea.io/gitea/modules/structs"
)
@@ -36,7 +38,9 @@ func GetNotificationCount(c *context.Context) {
c.Data["NotificationUnreadCount"] = func() int64 {
count, err := models.GetNotificationCount(c, c.Doer, models.NotificationStatusUnread)
if err != nil {
- c.ServerError("GetNotificationCount", err)
+ if err != goctx.Canceled {
+ log.Error("Unable to GetNotificationCount for user:%-v: %v", c.Doer, err)
+ }
return -1
}