mirror of
https://github.com/element-hq/element-web
synced 2024-11-28 20:38:55 +03:00
fix NPE if messagePanel isn't yet defined
This commit is contained in:
parent
50ac0ab4cf
commit
424540e57a
1 changed files with 3 additions and 1 deletions
|
@ -358,7 +358,9 @@ module.exports = React.createClass({
|
||||||
// pagination request, so give the messagePanel a chance to set off
|
// pagination request, so give the messagePanel a chance to set off
|
||||||
// another.
|
// another.
|
||||||
|
|
||||||
this.refs.messagePanel.checkFillState();
|
if (this.refs.messagePanel) {
|
||||||
|
this.refs.messagePanel.checkFillState();
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onSearchResultsFillRequest: function(backwards) {
|
onSearchResultsFillRequest: function(backwards) {
|
||||||
|
|
Loading…
Reference in a new issue