From f2844b75831c9e05eae20c18116f104d3de7ee86 Mon Sep 17 00:00:00 2001 From: sotho Date: Wed, 24 Mar 2021 21:26:15 +0100 Subject: [PATCH] Fix wrong user returned in API (#15139) The API call: GET /repos/{owner}/{repo}/pulls/{index}/reviews/{id}/comments returns always the reviewer, but should return the poster. Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: zeripath --- modules/convert/pull_review.go | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/modules/convert/pull_review.go b/modules/convert/pull_review.go index d1d6e767d..067831cd7 100644 --- a/modules/convert/pull_review.go +++ b/modules/convert/pull_review.go @@ -85,19 +85,18 @@ func ToPullReviewCommentList(review *models.Review, doer *models.User) ([]*api.P apiComments := make([]*api.PullReviewComment, 0, len(review.CodeComments)) - auth := false - if doer != nil { - auth = doer.IsAdmin || doer.ID == review.ReviewerID - } - for _, lines := range review.CodeComments { for _, comments := range lines { for _, comment := range comments { + auth := false + if doer != nil { + auth = doer.IsAdmin || doer.ID == comment.Poster.ID + } apiComment := &api.PullReviewComment{ ID: comment.ID, Body: comment.Content, - Reviewer: ToUser(review.Reviewer, doer != nil, auth), - ReviewID: review.ID, + Reviewer: ToUser(comment.Poster, doer != nil, auth), + ReviewID: comment.PosterID, Created: comment.CreatedUnix.AsTime(), Updated: comment.UpdatedUnix.AsTime(), Path: comment.TreePath,