mirror of
https://github.com/element-hq/element-web
synced 2024-11-29 04:48:50 +03:00
Uncommit 71cb04c50a
(I failed to branch)
This commit is contained in:
parent
71cb04c50a
commit
332354e5b6
1 changed files with 1 additions and 19 deletions
|
@ -66,27 +66,9 @@ module.exports = React.createClass({
|
|||
},
|
||||
|
||||
showRoom: function(roomId) {
|
||||
var room;
|
||||
for (var i = 0; i < this.state.publicRooms.length; ++i) {
|
||||
if (this.state.publicRooms[i].room_id == roomId) {
|
||||
room = this.state.publicRooms[i];
|
||||
break;
|
||||
}
|
||||
}
|
||||
var oob_data = {};
|
||||
if (room) {
|
||||
oob_data = {
|
||||
avatarUrl: room.avatar_url,
|
||||
// XXX: This logic is duplicated from the JS SDK which
|
||||
// would normally decide what the name is.
|
||||
name: room.name || room.aliases[0],
|
||||
};
|
||||
}
|
||||
|
||||
dis.dispatch({
|
||||
action: 'view_room',
|
||||
room_id: roomId,
|
||||
oob_data: oob_data,
|
||||
room_id: roomId
|
||||
});
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue