diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-09-06 09:53:39 -0700 |
---|---|---|
committer | Emmanuel ROHEE <manu@Emmanuels-MacBook-Pro.local> | 2014-09-08 11:28:50 +0200 |
commit | cde6bdfa77a8383fa4042b94ef45646e37b83c50 (patch) | |
tree | 4d209c93f954d885662919714d45652281100cbc /webclient/home | |
parent | https when loading recaptcha js (diff) | |
download | synapse-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.html | 2 |
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/> |