diff --git a/remote/github/github.go b/remote/github/github.go index 433bd2db..fe7244bb 100644 --- a/remote/github/github.go +++ b/remote/github/github.go @@ -192,7 +192,7 @@ func (g *Github) Repo(u *model.User, owner, name string) (*model.Repo, error) { func (g *Github) Repos(u *model.User) ([]*model.RepoLite, error) { client := NewClient(g.API, u.Token, g.SkipVerify) - all, err := GetAllRepos(client) + all, err := GetUserRepos(client) if err != nil { return nil, err }