diff options
author | eladyn <59307989+eladyn@users.noreply.github.com> | 2022-03-03 16:18:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-03 16:18:26 +0100 |
commit | 7a893dab396c24d7e158b190f0a0182ff75bbcfd (patch) | |
tree | 2c0434eca1889bce9ac7861dc0f8f47719b2bbe2 /routers | |
parent | e800bc0cf46579ca24dca51d19f085bd463e8b05 (diff) | |
download | gitea-7a893dab396c24d7e158b190f0a0182ff75bbcfd.tar.gz gitea-7a893dab396c24d7e158b190f0a0182ff75bbcfd.zip |
ignore missing comment for user notifications (#18954)
* ignore missing comment for user notifications
* instead fix bug in notifications model
* use local variable instead
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: 6543 <6543@obermui.de>
Diffstat (limited to 'routers')
-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 8bf5d37116..30357ebd3f 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 && !models.IsErrCommentNotExist(err) { + if err != nil { ctx.InternalServerError(err) return } |