mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:38:58 +00:00
Backport #28551 RequestReview get deleted on review. So we don't have to try to load them on comments. (cherry picked from commit 0ac3186267b717bce7076ef44f883df7720d7a2d)
This commit is contained in:
parent
60a4c05d23
commit
d3846df1f9
3 changed files with 12 additions and 1 deletions
|
@ -688,8 +688,15 @@ func (c *Comment) LoadReactions(ctx context.Context, repo *repo_model.Repository
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Comment) loadReview(ctx context.Context) (err error) {
|
func (c *Comment) loadReview(ctx context.Context) (err error) {
|
||||||
|
if c.ReviewID == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
if c.Review == nil {
|
if c.Review == nil {
|
||||||
if c.Review, err = GetReviewByID(ctx, c.ReviewID); err != nil {
|
if c.Review, err = GetReviewByID(ctx, c.ReviewID); err != nil {
|
||||||
|
// review request which has been replaced by actual reviews doesn't exist in database anymore, so ignorem them.
|
||||||
|
if c.Type == CommentTypeReviewRequest {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -430,7 +430,8 @@ func (comments CommentList) loadReviews(ctx context.Context) error {
|
||||||
for _, comment := range comments {
|
for _, comment := range comments {
|
||||||
comment.Review = reviews[comment.ReviewID]
|
comment.Review = reviews[comment.ReviewID]
|
||||||
if comment.Review == nil {
|
if comment.Review == nil {
|
||||||
if comment.ReviewID > 0 {
|
// review request which has been replaced by actual reviews doesn't exist in database anymore, so don't log errors for them.
|
||||||
|
if comment.ReviewID > 0 && comment.Type != CommentTypeReviewRequest {
|
||||||
log.Error("comment with review id [%d] but has no review record", comment.ReviewID)
|
log.Error("comment with review id [%d] but has no review record", comment.ReviewID)
|
||||||
}
|
}
|
||||||
continue
|
continue
|
||||||
|
|
|
@ -622,6 +622,9 @@ func AddReviewRequest(ctx context.Context, issue *Issue, reviewer, doer *user_mo
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// func caller use the created comment to retrieve created review too.
|
||||||
|
comment.Review = review
|
||||||
|
|
||||||
return comment, committer.Commit()
|
return comment, committer.Commit()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue