summary refs log tree commit diff
path: root/webclient/home
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2014-09-06 09:53:39 -0700
committerEmmanuel ROHEE <manu@Emmanuels-MacBook-Pro.local>2014-09-08 11:28:50 +0200
commitcde6bdfa77a8383fa4042b94ef45646e37b83c50 (patch)
tree4d209c93f954d885662919714d45652281100cbc /webclient/home
parenthttps when loading recaptcha js (diff)
downloadsynapse-cde6bdfa77a8383fa4042b94ef45646e37b83c50.tar.xz
Use the room_display_name when presenting on the home page, and not the room_alias which may not be set.
Diffstat (limited to 'webclient/home')
-rw-r--r--webclient/home/home.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/home/home.html b/webclient/home/home.html
index c1f9643839..7240e79f86 100644
--- a/webclient/home/home.html
+++ b/webclient/home/home.html
@@ -26,7 +26,7 @@
     
     <div class="public_rooms" ng-repeat="room in public_rooms">
         <div>
-            <a href="#/room/{{ room.room_alias ? room.room_alias : room.room_id }}" >{{ room.room_alias }}</a>
+            <a href="#/room/{{ room.room_alias ? room.room_alias : room.room_id }}" >{{ room.room_display_name }}</a>
         </div>
     </div>
     <br/>