1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-27 04:21:52 +03:00

Replace view_set_mxid with require_registration

To put all the other flows through the to-ilag-or-not-to-ilag flow
This commit is contained in:
David Baker
2018-09-05 18:08:49 +01:00
parent a042f4d0af
commit 27fa21e403
9 changed files with 11 additions and 11 deletions

View File

@ -480,7 +480,7 @@ export default React.createClass({
group_id: groupId,
},
});
dis.dispatch({action: 'view_set_mxid'});
dis.dispatch({action: 'require_registration'});
willDoOnboarding = true;
}
this.setState({
@ -724,7 +724,7 @@ export default React.createClass({
_onJoinClick: async function() {
if (this._matrixClient.isGuest()) {
dis.dispatch({action: 'view_set_mxid'});
dis.dispatch({action: 'require_registration'});
return;
}