mirror of
https://github.com/nextcloud/ocsms.git
synced 2026-08-11 16:32:55 +00:00
Avoid console errors if the input isn't a strong. (#261)
This commit is contained in:
@@ -63,6 +63,10 @@ var ContactRenderer = {
|
||||
}
|
||||
},
|
||||
generateFirstCharacter: function (input) {
|
||||
if (typeof input !== 'string') {
|
||||
return '?';
|
||||
}
|
||||
|
||||
if (input.charAt(0) === '+') {
|
||||
return '#';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user