Use the room_display_name when presenting on the home page, and not the room_alias which may not be set.

This commit is contained in:
Kegan Dougal
2014-09-08 11:28:50 +02:00
committed by Emmanuel ROHEE
parent f397b2264c
commit cde6bdfa77
+1 -1
View File
@@ -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/>