fix login-on-guest-bar-NPE crash https://github.com/vector-im/vector-web/issues/930
parent
ca56b7ec2d
commit
4b8b2ade8b
|
@ -64,7 +64,10 @@ module.exports = React.createClass({
|
||||||
},
|
},
|
||||||
|
|
||||||
componentWillUnmount: function() {
|
componentWillUnmount: function() {
|
||||||
MatrixClientPeg.get().removeListener("sync", this.onSyncStateChange);
|
// we may have entirely lost our client as we're logging out before clicking login on the guest bar...
|
||||||
|
if (MatrixClientPeg.get()) {
|
||||||
|
MatrixClientPeg.get().removeListener("sync", this.onSyncStateChange);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
onSyncStateChange: function(state, prevState) {
|
onSyncStateChange: function(state, prevState) {
|
||||||
|
|
Loading…
Reference in New Issue