diff options
author | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-12 10:12:56 +0200 |
---|---|---|
committer | Emmanuel ROHEE <erohee@amdocs.com> | 2014-09-12 10:12:56 +0200 |
commit | 6ea20f3503d56457d6b027e2404a701377a69e76 (patch) | |
tree | 96965f7d69b50be94530431a6445fb02c98a89a8 /webclient/recents | |
parent | BF: temp workaround while /initialSync on a particular room is not available (diff) | |
download | synapse-6ea20f3503d56457d6b027e2404a701377a69e76.tar.xz |
Show room name updates in room history and recents.
Update it with the latest value
Diffstat (limited to 'webclient/recents')
-rw-r--r-- | webclient/recents/recents.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/webclient/recents/recents.html b/webclient/recents/recents.html index 6976bab879..3fb2b43ee3 100644 --- a/webclient/recents/recents.html +++ b/webclient/recents/recents.html @@ -80,6 +80,10 @@ {{ room.lastMsg.user_id | mUserDisplayName: room.room_id }} changed the topic to: {{ room.lastMsg.content.topic }} </div> + <div ng-switch-when="m.room.name"> + {{ room.lastMsg.user_id | mUserDisplayName: room.room_id }} changed the room name to: {{ room.lastMsg.content.name }} + </div> + <div ng-switch-default> <div ng-if="room.lastMsg.type.indexOf('m.call.') === 0"> Call |