diff options
author | oliverpool <git@olivier.pfad.fr> | 2024-02-27 16:18:30 +0100 |
---|---|---|
committer | Earl Warren <earl-warren@noreply.codeberg.org> | 2024-02-27 19:35:43 +0100 |
commit | e154655c8777d4587113b9992291b623f70b81da (patch) | |
tree | e5823a5de209cb900642ab63e04d8f35e77fc385 /routers/api/v1/repo | |
parent | fix cherry-pick (diff) | |
download | forgejo-e154655c8777d4587113b9992291b623f70b81da.tar.xz forgejo-e154655c8777d4587113b9992291b623f70b81da.zip |
fix missing argument
Diffstat (limited to 'routers/api/v1/repo')
-rw-r--r-- | routers/api/v1/repo/pull_review.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/api/v1/repo/pull_review.go b/routers/api/v1/repo/pull_review.go index efb077cbae..e39a096add 100644 --- a/routers/api/v1/repo/pull_review.go +++ b/routers/api/v1/repo/pull_review.go @@ -339,6 +339,7 @@ func CreatePullReviewComment(ctx *context.APIContext) { opts.Path, line, review.ID, + nil, ) if err != nil { ctx.InternalServerError(err) |