Show More
@@ -224,8 +224,14 b' class CommentsModel(BaseModel):' | |||
|
224 | 224 | |
|
225 | 225 | comment.repo = repo |
|
226 | 226 | comment.author = user |
|
227 |
|
|
|
227 | resolved_comment = self.__get_commit_comment( | |
|
228 | 228 | validated_kwargs['resolves_comment_id']) |
|
229 | # check if the comment actually belongs to this PR | |
|
230 | if resolved_comment and resolved_comment.pull_request and \ | |
|
231 | resolved_comment.pull_request != pull_request: | |
|
232 | # comment not bound to this pull request, forbid | |
|
233 | resolved_comment = None | |
|
234 | comment.resolved_comment = resolved_comment | |
|
229 | 235 | |
|
230 | 236 | pull_request_id = pull_request |
|
231 | 237 |
General Comments 0
You need to be logged in to leave comments.
Login now