Merge pull request #177 from Half-Shot/develop

Fixed default avatars not working with unicode.
This commit is contained in:
David Baker 2016-02-25 16:28:21 +00:00
commit d9e58d9626

View file

@ -101,9 +101,11 @@ module.exports = React.createClass({
_getInitialLetter: function() { _getInitialLetter: function() {
var name = this.props.name; var name = this.props.name;
var initial = name[0]; //For large characters (exceeding 2 bytes), this function will get the correct character.
//However, this does NOT get the second character correctly if a large character is before it.
var initial = String.fromCodePoint(name.codePointAt(0));
if ((initial === '@' || initial === '#') && name[1]) { if ((initial === '@' || initial === '#') && name[1]) {
initial = name[1]; initial = String.fromCodePoint(name.codePointAt(1));
} }
return initial.toUpperCase(); return initial.toUpperCase();
}, },