Skip to content

Commit

Permalink
Ignore missing comment for user notifications (go-gitea#18954) (go-gi…
Browse files Browse the repository at this point in the history
  • Loading branch information
zeripath authored Mar 10, 2022
1 parent 03d9242 commit 4047c5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions models/notification.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion routers/api/v1/notify/repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 4047c5c

Please sign in to comment.