mirror of
https://github.com/go-gitea/gitea.git
synced 2024-12-03 00:09:18 +08:00
And there is another one ... (#13350)
Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
8e38bd154f
commit
f825e2a568
@ -56,7 +56,11 @@ func GetIssueCommentReactions(ctx *context.APIContext) {
|
||||
return
|
||||
}
|
||||
|
||||
if !ctx.Repo.CanRead(models.UnitTypeIssues) {
|
||||
if err := comment.LoadIssue(); err != nil {
|
||||
ctx.Error(http.StatusInternalServerError, "comment.LoadIssue", err)
|
||||
}
|
||||
|
||||
if !ctx.Repo.CanReadIssuesOrPulls(comment.Issue.IsPull) {
|
||||
ctx.Error(http.StatusForbidden, "GetIssueCommentReactions", errors.New("no permission to get reactions"))
|
||||
return
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user