Skip to content

Commit

Permalink
Change model name
Browse files Browse the repository at this point in the history
  • Loading branch information
timofurrer committed Jan 23, 2023
1 parent dda6e96 commit 5d8c3e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions projects.go
Original file line number Diff line number Diff line change
Expand Up @@ -1986,13 +1986,13 @@ func (s *ProjectsService) GetProjectPullMirrorDetails(pid interface{}, options .
return nil, nil, err
}

model := new(ProjectPullMirrorDetails)
resp, err := s.client.Do(req, model)
pmd := new(ProjectPullMirrorDetails)
resp, err := s.client.Do(req, pmd)
if err != nil {
return nil, resp, err
}

return model, resp, err
return pmd, resp, err
}

// StartMirroringProject start the pull mirroring process for a project.
Expand Down

0 comments on commit 5d8c3e5

Please sign in to comment.