diff options
Diffstat (limited to 'routers/api/v1/notify/repo.go')
-rw-r--r-- | routers/api/v1/notify/repo.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/api/v1/notify/repo.go b/routers/api/v1/notify/repo.go index 382d221b85..83d0fa5555 100644 --- a/routers/api/v1/notify/repo.go +++ b/routers/api/v1/notify/repo.go @@ -121,7 +121,7 @@ func ListRepoNotifications(ctx *context.APIContext) { return } err = nl.LoadAttributes() - if err != nil { + if err != nil && !models.IsErrCommentNotExist(err) { ctx.InternalServerError(err) return } |