Skip to content
Snippets Groups Projects
Commit 92800afd authored by Kegan Dougal's avatar Kegan Dougal
Browse files

Use the room_display_name when presenting on the home page, and not the...

Use the room_display_name when presenting on the home page, and not the room_alias which may not be set.
parent 929cb12e
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
<div class="public_rooms" ng-repeat="room in public_rooms"> <div class="public_rooms" ng-repeat="room in public_rooms">
<div> <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>
</div> </div>
<br/> <br/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment