fixed bad return statement

This commit is contained in:
2019-10-19 14:57:11 -06:00
parent 0ccf655aa4
commit f7f0e61ecd

View File

@ -15,7 +15,7 @@ func renderUnicodeEmoji(data emojiData) (string, error) {
emj, err := strconv.ParseInt(data.Unicode, 16, 32)
if err != nil {
// because not all of them are parseable (like keycaps \u0031-FE0F-20E3)
return nil, err
return "", err
} else {
return string(emj), err
}