handle phantom fork cases (#53)

closes #49
This commit is contained in:
Samar Dhwoj Acharya 2021-01-17 23:56:26 -06:00 committed by GitHub
parent 4428b1dd0f
commit 49f113e40c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,7 +47,7 @@ function updateDT(data) {
const forks = []; const forks = [];
for (let fork of data) { for (let fork of data) {
fork.repoLink = `<a href="https://github.com/${fork.full_name}">Link</a>`; fork.repoLink = `<a href="https://github.com/${fork.full_name}">Link</a>`;
fork.ownerName = fork.owner.login; fork.ownerName = fork.owner ? fork.owner.login : '<strike><em>Unknown</em></strike>';
forks.push(fork); forks.push(fork);
} }
const dataSet = forks.map(fork => const dataSet = forks.map(fork =>
@ -114,7 +114,6 @@ function fetchAndShow(repo) {
return response.json(); return response.json();
}) })
.then(data => { .then(data => {
console.log(data);
updateDT(data); updateDT(data);
}) })
.catch(error => { .catch(error => {