diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-09-17 16:38:32 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-09-17 16:38:40 +0100 |
commit | aeaeceb92c648bf99bce60eb1bc77fcc81020d53 (patch) | |
tree | c350747a5ac10806ad1fb7eec9314aa8e710f0b3 /webclient/components | |
parent | webclient SYWEB-3 : Public rooms are bold. Can't think of a nicer way which d... (diff) | |
download | synapse-aeaeceb92c648bf99bce60eb1bc77fcc81020d53.tar.xz |
Create room entries for public rooms too so their public state is transferred over correctly when you join it.
Diffstat (limited to 'webclient/components')
-rw-r--r-- | webclient/components/matrix/event-handler-service.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/webclient/components/matrix/event-handler-service.js b/webclient/components/matrix/event-handler-service.js index 0be294d745..d3de10c7e2 100644 --- a/webclient/components/matrix/event-handler-service.js +++ b/webclient/components/matrix/event-handler-service.js @@ -517,6 +517,7 @@ function(matrixService, $rootScope, $q, $timeout, mPresence) { if (!visible) { return; } + initRoom(room_id); var room = $rootScope.events.rooms[room_id]; if (room) { |