diff options
Diffstat (limited to 'routers/web/repo/pull.go')
-rw-r--r-- | routers/web/repo/pull.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/repo/pull.go b/routers/web/repo/pull.go index c5302dd50f..9f71ab4632 100644 --- a/routers/web/repo/pull.go +++ b/routers/web/repo/pull.go @@ -581,7 +581,7 @@ func GetPullCommits(ctx *context.Context) { } resp := &pullCommitList{} - commits, lastReviewCommitSha, err := pull_service.GetPullCommits(ctx, issue) + commits, lastReviewCommitSha, err := pull_service.GetPullCommits(ctx, ctx.Repo.GitRepo, ctx.Doer, issue) if err != nil { ctx.JSON(http.StatusInternalServerError, err) return |