mirror of
https://github.com/nextcloud/ocsms.git
synced 2026-08-21 21:32:59 +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) {
|
generateFirstCharacter: function (input) {
|
||||||
|
if (typeof input !== 'string') {
|
||||||
|
return '?';
|
||||||
|
}
|
||||||
|
|
||||||
if (input.charAt(0) === '+') {
|
if (input.charAt(0) === '+') {
|
||||||
return '#';
|
return '#';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user