diff options
author | Runxi Yu <me@runxiyu.org> | 2025-04-05 21:47:44 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-04-05 21:47:44 +0800 |
commit | efa6f33b4c67f64a4a8d8cd723b9bbc9494fc735 (patch) | |
tree | c4075c78bc4126d764f91ec68931c34281913dcc /http_handle_repo_raw.go | |
parent | Add missing copyright headers (diff) | |
download | forge-3e835507e804c2fc51773a5efe784663a055e56a.tar.gz forge-3e835507e804c2fc51773a5efe784663a055e56a.tar.zst forge-3e835507e804c2fc51773a5efe784663a055e56a.zip |
Unexport fields in Serverv0.1.24
Diffstat (limited to 'http_handle_repo_raw.go')
-rw-r--r-- | http_handle_repo_raw.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http_handle_repo_raw.go b/http_handle_repo_raw.go index b714397..0407574 100644 --- a/http_handle_repo_raw.go +++ b/http_handle_repo_raw.go @@ -24,7 +24,7 @@ func (s *Server) httpHandleRepoRaw(writer http.ResponseWriter, request *http.Req _, repoPath, _, _, _, _, _ := s.getRepoInfo(request.Context(), groupPath, repoName, "") - client, err := git2c.NewClient(s.Config.Git.Socket) + client, err := git2c.NewClient(s.config.Git.Socket) if err != nil { errorPage500(writer, params, err.Error()) return |