From dd2ae6412088a30a7a2eecd7d8ba155f2b8396ff Mon Sep 17 00:00:00 2001
From: Kegan Dougal <kegan@matrix.org>
Date: Sat, 6 Sep 2014 09:57:13 -0700
Subject: [PATCH] Set the room_alias field when we encounter a new one, rather
 than only from local storage.

---
 webclient/components/matrix/matrix-service.js | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/webclient/components/matrix/matrix-service.js b/webclient/components/matrix/matrix-service.js
index a1b9691f05..3c28c52fbe 100644
--- a/webclient/components/matrix/matrix-service.js
+++ b/webclient/components/matrix/matrix-service.js
@@ -525,7 +525,6 @@ angular.module('matrixService', [])
                 room_alias: undefined,
                 room_display_name: undefined
             };
-            
             var alias = this.getRoomIdToAliasMapping(room.room_id);
             if (alias) {
                 // use the existing alias from storage
@@ -539,6 +538,7 @@ angular.module('matrixService', [])
                 // TODO: select the smarter alias from the array
                 this.createRoomIdToAliasMapping(room.room_id, room.aliases[0]);
                 result.room_display_name = room.aliases[0];
+                result.room_alias = room.aliases[0];
             }
             else if (room.membership === "invite" && "inviter" in room) {
                 result.room_display_name = room.inviter + "'s room";
@@ -551,7 +551,6 @@ angular.module('matrixService', [])
         },
         
         createRoomIdToAliasMapping: function(roomId, alias) {
-            //console.log("creating mapping between " + roomId + " and " + alias);
             roomIdToAlias[roomId] = alias;
             aliasToRoomId[alias] = roomId;
             // localStorage.setItem(MAPPING_PREFIX+roomId, alias);
-- 
GitLab