summary refs log tree commit diff
path: root/webclient/rooms/rooms.html
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-21 15:30:57 +0100
committerErik Johnston <erik@matrix.org>2014-08-21 15:31:11 +0100
commit4c228df167ca1708964c93c3c20e46d631899ce1 (patch)
treef5749c5bb8949ee1bc456bcaaf51f03f529c9fb0 /webclient/rooms/rooms.html
parentFixed first pagination detection (diff)
downloadsynapse-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.html2
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/>