We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e866610 + 825763d commit 72af4baCopy full SHA for 72af4ba
js/githubresume.js
@@ -419,7 +419,8 @@ var run = function() {
419
var emojiPattern = /:([a-z0-9_\+\-]+):/g;
420
// no, it's not really a pattern
421
var imagePattern = "<img width='20' height='20' src='https://assets-cdn.github.com/images/icons/emoji/$1.png' />";
422
- repo.info.description = repo.info.description.replace(emojiPattern, imagePattern);
+ var description = repo.info.description;
423
+ repo.info.description = description ? description.replace(emojiPattern, imagePattern) : description;
424
view = {
425
name: repo.info.name,
426
date: date,
0 commit comments