fix NPE in EventTile
This commit is contained in:
parent
97976939bd
commit
13eed6cd39
1 changed files with 1 additions and 1 deletions
|
@ -478,7 +478,7 @@ module.exports = React.createClass({
|
|||
<div className={classes}>
|
||||
<div className="mx_EventTile_roomName">
|
||||
<a href={ permalink }>
|
||||
{ room.name }
|
||||
{ room ? room.name : '' }
|
||||
</a>
|
||||
</div>
|
||||
<div className="mx_EventTile_senderDetails">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue