diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-12 17:01:49 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-12 17:01:49 +0200 |
commit | 6c81752e46f7e97363b325120961d9496634997d (patch) | |
tree | cf94b5753fb422e9123b5465384d6588de5a93db /webclient/recents/recents.html | |
parent | Fixed public room name and users count alignement (diff) | |
download | synapse-6c81752e46f7e97363b325120961d9496634997d.tar.xz |
Fixed displayname resolution of emote sender
Diffstat (limited to '')
-rw-r--r-- | webclient/recents/recents.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/recents/recents.html b/webclient/recents/recents.html index 3fb2b43ee3..3d736b6694 100644 --- a/webclient/recents/recents.html +++ b/webclient/recents/recents.html @@ -66,7 +66,7 @@ </div> <div ng-switch-when="m.emote"> - <span ng-bind-html="'* ' + (room.lastMsg.user_id) + ' ' + room.lastMsg.content.body | linky:'_blank'"> + <span ng-bind-html="'* ' + (room.lastMsg.user_id | mUserDisplayName: room.room_id) + ' ' + room.lastMsg.content.body | linky:'_blank'"> </span> </div> |