mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 02:05:45 +03:00
Fix NPE when re-joining a room
Fix the length check on state.events
This commit is contained in:
parent
acfc7b3719
commit
db1e1c7df0
1 changed files with 1 additions and 1 deletions
|
@ -439,7 +439,7 @@ var TimelinePanel = React.createClass({
|
|||
// the messagePanel doesn't know where the read marker is.
|
||||
// if we know the timestamp of the read marker, make a guess based on that.
|
||||
var rmTs = TimelinePanel.roomReadMarkerTsMap[this.props.room.roomId];
|
||||
if (rmTs && this.state.events) {
|
||||
if (rmTs && this.state.events.length > 0) {
|
||||
if (rmTs < this.state.events[0].getTs()) {
|
||||
return -1;
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue