Skip to content

Commit

Permalink
Merge pull request #437 from python-discord/bugfix/lemon/snekbox-not-…
Browse files Browse the repository at this point in the history
…showing-on-front-page

Increase per_page to 100 for GitHub API call.
  • Loading branch information
Den4200 committed Dec 13, 2020
2 parents 9ae514e + aaf7333 commit a2992d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydis_site/apps/home/views/home.py
Expand Up @@ -16,7 +16,7 @@
class HomeView(View):
"""The main landing page for the website."""

github_api = "https://api.github.com/users/python-discord/repos"
github_api = "https://api.github.com/users/python-discord/repos?per_page=100"
repository_cache_ttl = 3600

# Which of our GitHub repos should be displayed on the front page, and in which order?
Expand Down

0 comments on commit a2992d9

Please sign in to comment.