Ignore missing comment for user notifications (#18954) (#19043)

pull/19047/head^2
zeripath 3 years ago committed by GitHub
parent 03d924238c
commit 4047c5c068
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      models/notification.go
  2. 2
      routers/api/v1/notify/repo.go

@ -498,14 +498,15 @@ func (n *Notification) APIURL() string {
type NotificationList []*Notification
// LoadAttributes load Repo Issue User and Comment if not loaded
func (nl NotificationList) LoadAttributes() (err error) {
func (nl NotificationList) LoadAttributes() error {
var err error
for i := 0; i < len(nl); i++ {
err = nl[i].LoadAttributes()
if err != nil && !IsErrCommentNotExist(err) {
return
return err
}
}
return
return nil
}
func (nl NotificationList) getPendingRepoIDs() []int64 {

@ -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
}

Loading…
Cancel
Save