Only replace .git if it occurs at the end. (#37)

Previously, foo/bar.github.io would be turned into foo/barhub.io.
This commit is contained in:
Matthew Merrill 2020-06-14 00:22:39 -07:00 committed by GitHub
parent ccea7c3df7
commit c86de7b089
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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