Skip to content

Commit 62d8403

Browse files
Fix teamreviewer ids
this needs to be a negative integer
1 parent efb4d30 commit 62d8403

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: routers/api/v1/repo/pull.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ func CreatePullRequest(ctx *context.APIContext) {
456456
ctx.Error(http.StatusInternalServerError, "ReviewRequest", err)
457457
return
458458
}
459-
reviewerIds = append(reviewerIds, teamReviewer.ID)
459+
reviewerIds = append(reviewerIds, -teamReviewer.ID)
460460
}
461461
}
462462

0 commit comments

Comments
 (0)