mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	@@ -498,14 +498,15 @@ func (n *Notification) APIURL() string {
 | 
				
			|||||||
type NotificationList []*Notification
 | 
					type NotificationList []*Notification
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// LoadAttributes load Repo Issue User and Comment if not loaded
 | 
					// 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++ {
 | 
						for i := 0; i < len(nl); i++ {
 | 
				
			||||||
		err = nl[i].LoadAttributes()
 | 
							err = nl[i].LoadAttributes()
 | 
				
			||||||
		if err != nil && !IsErrCommentNotExist(err) {
 | 
							if err != nil && !IsErrCommentNotExist(err) {
 | 
				
			||||||
			return
 | 
								return err
 | 
				
			||||||
		}
 | 
							}
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	return
 | 
						return nil
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func (nl NotificationList) getPendingRepoIDs() []int64 {
 | 
					func (nl NotificationList) getPendingRepoIDs() []int64 {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -121,7 +121,7 @@ func ListRepoNotifications(ctx *context.APIContext) {
 | 
				
			|||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	err = nl.LoadAttributes()
 | 
						err = nl.LoadAttributes()
 | 
				
			||||||
	if err != nil && !models.IsErrCommentNotExist(err) {
 | 
						if err != nil {
 | 
				
			||||||
		ctx.InternalServerError(err)
 | 
							ctx.InternalServerError(err)
 | 
				
			||||||
		return
 | 
							return
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user