diff options
Diffstat (limited to 'http_handle_repo_info.go')
-rw-r--r-- | http_handle_repo_info.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http_handle_repo_info.go b/http_handle_repo_info.go index e2080ac..303fad7 100644 --- a/http_handle_repo_info.go +++ b/http_handle_repo_info.go @@ -21,7 +21,7 @@ func (s *Server) httpHandleRepoInfo(writer http.ResponseWriter, request *http.Re repoName := params["repo_name"].(string) var repoPath string - if err := s.Database.QueryRow(request.Context(), ` + if err := s.database.QueryRow(request.Context(), ` WITH RECURSIVE group_path_cte AS ( -- Start: match the first name in the path where parent_group IS NULL SELECT |