mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	fix {DELETE,POST} /repos/{owner}/{repo}/issues/comments/{id}/reactions
(cherry picked from commit f499075c53752f983c6e4f8af17c449926ba94d9)
This commit is contained in:
		
					parent
					
						
							
								f59a6cc0e4
							
						
					
				
			
			
				commit
				
					
						685ebdba63
					
				
			
		
					 1 changed files with 12 additions and 2 deletions
				
			
		|  | @ -186,9 +186,19 @@ func changeIssueCommentReaction(ctx *context.APIContext, form api.EditReactionOp | |||
| 		return | ||||
| 	} | ||||
| 
 | ||||
| 	err = comment.LoadIssue(ctx) | ||||
| 	if err != nil { | ||||
| 	if err = comment.LoadIssue(ctx); err != nil { | ||||
| 		ctx.Error(http.StatusInternalServerError, "comment.LoadIssue() failed", err) | ||||
| 		return | ||||
| 	} | ||||
| 
 | ||||
| 	if comment.Issue.RepoID != ctx.Repo.Repository.ID { | ||||
| 		ctx.NotFound() | ||||
| 		return | ||||
| 	} | ||||
| 
 | ||||
| 	if !ctx.Repo.CanReadIssuesOrPulls(comment.Issue.IsPull) { | ||||
| 		ctx.NotFound() | ||||
| 		return | ||||
| 	} | ||||
| 
 | ||||
| 	if comment.Issue.IsLocked && !ctx.Repo.CanWriteIssuesOrPulls(comment.Issue.IsPull) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue