Skip to content

Commit

Permalink
fix regression of 15139 (go-gitea#15164)
Browse files Browse the repository at this point in the history
  • Loading branch information
6543 authored Mar 26, 2021
1 parent b68eb54 commit dc56fb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/convert/pull_review.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func ToPullReviewCommentList(review *models.Review, doer *models.User) ([]*api.P
ID: comment.ID,
Body: comment.Content,
Reviewer: ToUser(comment.Poster, doer != nil, auth),
ReviewID: comment.PosterID,
ReviewID: review.ID,
Created: comment.CreatedUnix.AsTime(),
Updated: comment.UpdatedUnix.AsTime(),
Path: comment.TreePath,
Expand Down

0 comments on commit dc56fb7

Please sign in to comment.