1
0
mirror of https://github.com/nerzhul/ocsms.git synced 2025-06-07 16:06:15 +00:00

Avoid console errors if the input isn't a strong. (#261)

This commit is contained in:
Greg Ross 2018-07-09 14:46:37 -04:00 committed by Loïc Blot
parent 6505571221
commit afea0734e9

View File

@ -63,6 +63,10 @@ var ContactRenderer = {
} }
}, },
generateFirstCharacter: function (input) { generateFirstCharacter: function (input) {
if (typeof input !== 'string') {
return '?';
}
if (input.charAt(0) === '+') { if (input.charAt(0) === '+') {
return '#'; return '#';
} }