Skip to content

Commit

Permalink
Fix: Github connector Fix repos list display - MEED-2497 - Meeds-io/M…
Browse files Browse the repository at this point in the history
  • Loading branch information
AzmiTouil committed Sep 18, 2023
1 parent 3cb8344 commit 8c07a11
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public List<RemoteRepository> retrieveOrganizationRepos(long organizationId, Str
}

public int countOrganizationRepos(long organizationId, String accessToken) {
String url = GITHUB_API_URL + organizationId + "/repos";
String url = GITHUB_API_URL + organizationId + "/repos?per_page=100";
URI uri = URI.create(url);
try {
String response = processGet(uri, accessToken);
Expand Down

0 comments on commit 8c07a11

Please sign in to comment.