diff options
-rw-r--r-- | src/github.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/github.rs b/src/github.rs index bcd9865..4624482 100644 --- a/src/github.rs +++ b/src/github.rs @@ -57,7 +57,7 @@ pub async fn fetch_repos(github_username: &str) -> Result<Vec<Repo>, Error> { let repo_page = client.request( reqwest::Method::GET, format!( - "https://api.github.com/users/{}/repos?page={}&per_page=100", + "https://api.github.com/users/{}/repos?page={}&per_page=100&sort=updated", github_username, i, ), |