repo names have the domain preprended, added replace to remove it b4 the fetch

This commit is contained in:
Jon Gorrono 2019-07-23 17:36:55 -07:00
parent ccea7c3df7
commit d19f6ffcbe
1 changed files with 1 additions and 0 deletions

View File

@ -100,6 +100,7 @@ function fetchAndShow(repo) {
repo = repo.replace('https://github.com/', '');
repo = repo.replace('http://github.com/', '');
repo = repo.replace('.git', '');
repo = repo.replace(/^github.com\//, '');
fetch(
`https://api.github.com/repos/${repo}/forks?sort=stargazers&per_page=100`