Description
I can't find the repository sterglee/scalalab with searchRepos
Reproduce bug
val searchRepos = gh.repos.searchRepos("sterglee/scalalab", Nil)
val response = searchRepos.unsafeRunSync()
response.result match {
case Left(e) => println(s"Something went wrong: ${e.getMessage}")
case Right(r) => println(r)
}
That print:
SearchReposResult(0,false,List())
Expected
But the repository exist. And I can find it with REST API
curl -H "Accept: application/vnd.github.v3+json" https://api.github.com/search/repositories?q=sterglee%2Fscalalab
I have also directly search sterglee/scalalab in github. github can find the repository.
searchRepos shouldn't return a empty list.
Description
I can't find the repository
sterglee/scalalabwith searchReposReproduce bug
That print:
Expected
But the repository exist. And I can find it with REST API
I have also directly search
sterglee/scalalabin github. github can find the repository.searchReposshouldn't return a empty list.