Address review comments

s/onClick/onSelect/
This commit is contained in:
Richard van der Hoff 2016-01-06 16:46:29 +00:00
parent 75302b1f97
commit 4624e7a485
2 changed files with 18 additions and 3 deletions

View file

@ -618,7 +618,17 @@ module.exports = React.createClass({
if (this.state.searchScope === 'All') {
var roomId = mxEv.getRoomId();
if(roomId != lastRoomId) {
ret.push(<li key={mxEv.getId() + "-room"}><h1>Room: { cli.getRoom(roomId).name }</h1></li>);
var room = cli.getRoom(roomId);
// XXX: if we've left the room, we might not know about
// it. We should tell the js sdk to go and find out about
// it. But that's not an issue currently, as synapse only
// returns results for rooms we're joined to.
var roomName = room ? room.name : "Unknown room "+roomId;
ret.push(<li key={mxEv.getId() + "-room"}>
<h1>Room: { roomName }</h1>
</li>);
lastRoomId = roomId;
}
}