You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-10 09:22:25 +03:00
Ensure PersistedElement are unmounted on application logout
This commit is contained in:
@@ -586,6 +586,7 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
|
|||||||
break;
|
break;
|
||||||
case 'logout':
|
case 'logout':
|
||||||
dis.dispatch({action: "hangup_all"});
|
dis.dispatch({action: "hangup_all"});
|
||||||
|
dis.dispatch({action: "logout"});
|
||||||
Lifecycle.logout();
|
Lifecycle.logout();
|
||||||
break;
|
break;
|
||||||
case 'require_registration':
|
case 'require_registration':
|
||||||
|
|||||||
@@ -139,6 +139,8 @@ export default class PersistedElement extends React.Component {
|
|||||||
_onAction(payload) {
|
_onAction(payload) {
|
||||||
if (payload.action === 'timeline_resize') {
|
if (payload.action === 'timeline_resize') {
|
||||||
this._repositionChild();
|
this._repositionChild();
|
||||||
|
} else if (payload.action === 'logout') {
|
||||||
|
PersistedElement.destroyElement(this.props.persistKey);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user