Skip to content

Commit

Permalink
🐛 fix gitlab project detection (#2014)
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-rock authored Oct 1, 2023
1 parent a44119e commit df07d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion providers/gitlab/resources/gitlab.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func (g *mqlGitlabGroup) projects() ([]interface{}, error) {
}
gid := g.Id.Data

grp, _, err := conn.Client().Groups.GetGroup(gid, nil)
grp, _, err := conn.Client().Groups.GetGroup(int(gid), nil)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit df07d0f

Please sign in to comment.