Table: emoji url might be null

This commit is contained in:
Julien Bisconti 2018-08-13 09:54:14 +02:00 committed by Andreas Gebhardt
parent abf25909d9
commit ea85fc1b52

View File

@ -80,7 +80,7 @@ const emojify = text => {
const result = text.replace(colonWrapped, match => { const result = text.replace(colonWrapped, match => {
const name = match.replace(/:/g, ''); const name = match.replace(/:/g, '');
const url = emojiMapURL[name]; const url = emojiMapURL[name];
return `<img src="${url}" class="emoji" alt="${name}" />`; return url ? `<img src="${url}" class="emoji" alt="${name}" />` : match;
}); });
return result || text; return result || text;
}; };
@ -117,17 +117,11 @@ const formatEntry = (
description, description,
homepage, homepage,
stargazers_count: stargazers, stargazers_count: stargazers,
// subscribers_count: watchers,
pushed_at: updated, pushed_at: updated,
// open_issues: issues,
// forks,
language, language,
license, license,
owner, owner,
categoryName, categoryName,
// categoryDescription,
// status,
// ownerType,
}, },
i, i,
) => ) =>