diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-21 15:30:57 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-21 15:31:11 +0100 |
commit | 4c228df167ca1708964c93c3c20e46d631899ce1 (patch) | |
tree | f5749c5bb8949ee1bc456bcaaf51f03f529c9fb0 /webclient/rooms/rooms.html | |
parent | Fixed first pagination detection (diff) | |
download | synapse-4c228df167ca1708964c93c3c20e46d631899ce1.tar.xz |
Use the new 'inviter' key from im sync for room display names.
Diffstat (limited to 'webclient/rooms/rooms.html')
-rw-r--r-- | webclient/rooms/rooms.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/rooms/rooms.html b/webclient/rooms/rooms.html index 2602209bd3..ba3b7d8bad 100644 --- a/webclient/rooms/rooms.html +++ b/webclient/rooms/rooms.html @@ -65,7 +65,7 @@ <div class="rooms" ng-repeat="(rm_id, room) in rooms"> <div> - <a href="#/room/{{ room.room_alias ? room.room_alias : rm_id }}" >{{ room.room_alias }}</a> {{room.membership === 'invite' ? ' (invited)' : ''}} + <a href="#/room/{{ room.room_alias ? room.room_alias : rm_id }}" >{{ room.room_display_name }}</a> {{room.membership === 'invite' ? ' (invited)' : ''}} </div> </div> <br/> |