You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-04 11:51:45 +03:00
Fix exception on logout
Don't try to unregister if we never registered
This commit is contained in:
@@ -46,6 +46,8 @@ export default class EmbeddedPage extends React.PureComponent {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this._dispatcherRef = null;
|
||||
|
||||
this.state = {
|
||||
page: '',
|
||||
};
|
||||
@@ -90,7 +92,7 @@ export default class EmbeddedPage extends React.PureComponent {
|
||||
|
||||
componentWillUnmount() {
|
||||
this._unmounted = true;
|
||||
dis.unregister(this._dispatcherRef);
|
||||
if (this._dispatcherRef !== null) dis.unregister(this._dispatcherRef);
|
||||
}
|
||||
|
||||
onAction = (payload) => {
|
||||
|
||||
Reference in New Issue
Block a user