0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-14 00:28:25 +02:00

Fixed getUserDisplayname when the user has a null displayname

This commit is contained in:
Emmanuel ROHEE 2014-09-24 17:42:21 +02:00
parent 327dcc98e3
commit 2b4736afcd

View file

@ -371,7 +371,7 @@ function(matrixService, $rootScope, $q, $timeout, mPresence) {
// Get the user display name from the member list of the room
var member = getMember(room_id, user_id);
if (member) {
if (member && member.content.displayname) { // Do not consider null displayname
displayName = member.content.displayname;
}