diff options
author | Unknwon <joe2010xtmf@163.com> | 2014-10-18 23:26:55 -0400 |
---|---|---|
committer | Unknwon <joe2010xtmf@163.com> | 2014-10-18 23:26:55 -0400 |
commit | 3abc41cccab2486012b46305827433ad6f5deade (patch) | |
tree | 91f34bbc2dcfe9266039aafdddbb6be45c7464f4 /routers/repo/http.go | |
parent | 9e3a1bc11af8ab95a4d6b47607a89207941a3119 (diff) | |
download | gitea-3abc41cccab2486012b46305827433ad6f5deade.tar.gz gitea-3abc41cccab2486012b46305827433ad6f5deade.zip |
Fix API broken
Diffstat (limited to 'routers/repo/http.go')
-rw-r--r-- | routers/repo/http.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/repo/http.go b/routers/repo/http.go index 81b49bf309..3641f4dae6 100644 --- a/routers/repo/http.go +++ b/routers/repo/http.go @@ -204,7 +204,7 @@ func Http(ctx *middleware.Context) { config := Config{setting.RepoRootPath, "git", true, true, f} handler := HttpBackend(&config) - handler(ctx.Resp, ctx.Req) + handler(ctx.Resp, ctx.Req.Request) } type route struct { |