Skip to content

Commit f604ab1

Browse files
sebastian-sauerCalK16
authored andcommitted
Fix teamreviewer ids
this needs to be a negative integer
1 parent e4858b2 commit f604ab1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routers/api/v1/repo/pull.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ func CreatePullRequest(ctx *context.APIContext) {
589589
ctx.Error(http.StatusInternalServerError, "ReviewRequest", err)
590590
return
591591
}
592-
reviewerIds = append(reviewerIds, teamReviewer.ID)
592+
reviewerIds = append(reviewerIds, -teamReviewer.ID)
593593
}
594594
}
595595

0 commit comments

Comments
 (0)