Create room entries for public rooms too so their public state is transferred over correctly when you join it.
This commit is contained in:
parent
16f55d4275
commit
aeaeceb92c
|
@ -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) {
|
||||
|
|
|
@ -53,6 +53,8 @@ angular.module('HomeController', ['matrixService', 'eventHandlerService', 'Recen
|
|||
|
||||
// Add room_alias & room_display_name members
|
||||
angular.extend(room, matrixService.getRoomAliasAndDisplayName(room));
|
||||
|
||||
eventHandlerService.setRoomVisibility(room.room_id, "public");
|
||||
}
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue