mirror of https://github.com/vector-im/riot-web
Merge pull request #3181 from matrix-org/travis/soft-logout-force
Require that users go to the soft logout page if they're soft logged outpull/21833/head
commit
9266c797da
|
@ -255,6 +255,14 @@ export default React.createClass({
|
||||||
|
|
||||||
// For PersistentElement
|
// For PersistentElement
|
||||||
this.state.resizeNotifier.on("middlePanelResized", this._dispatchTimelineResize);
|
this.state.resizeNotifier.on("middlePanelResized", this._dispatchTimelineResize);
|
||||||
|
|
||||||
|
// Force users to go through the soft logout page if they're soft logged out
|
||||||
|
if (Lifecycle.isSoftLogout()) {
|
||||||
|
// When the session loads it'll be detected as soft logged out and a dispatch
|
||||||
|
// will be sent out to say that, triggering this MatrixChat to show the soft
|
||||||
|
// logout page.
|
||||||
|
Lifecycle.loadSession({});
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
componentDidMount: function() {
|
componentDidMount: function() {
|
||||||
|
|
Loading…
Reference in New Issue