Skip to content
This repository was archived by the owner on Jan 23, 2022. It is now read-only.

Commit f78b9f3

Browse files
committed
fix
1 parent 52da193 commit f78b9f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scm/driver/gitlab/search.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ type searchService struct {
1818
func (s *searchService) FindProjects(ctx context.Context, projectName string) ([]*scm.Repository, *scm.Response, error) {
1919
path := fmt.Sprintf("api/v4/search?scope=projects&search=%s", encode(projectName))
2020
out := []*repository{}
21-
res, err := s.client.do(ctx, "GET", path, nil, out)
21+
res, err := s.client.do(ctx, "GET", path, nil, &out)
2222
return convertRepositoryList(out), res, err
2323
}

0 commit comments

Comments
 (0)