Merge pull request #5849 from matrix-org/gsouquet-continue-previous-session
Move user to welcome_page if continuing with previous session
This commit is contained in:
commit
d0dfc5df2b
1 changed files with 8 additions and 1 deletions
|
@ -436,6 +436,8 @@ export default class Registration extends React.Component<IProps, IState> {
|
||||||
// ok fine, there's still no session: really go to the login page
|
// ok fine, there's still no session: really go to the login page
|
||||||
this.props.onLoginClick();
|
this.props.onLoginClick();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return sessionLoaded;
|
||||||
};
|
};
|
||||||
|
|
||||||
private renderRegisterComponent() {
|
private renderRegisterComponent() {
|
||||||
|
@ -557,7 +559,12 @@ export default class Registration extends React.Component<IProps, IState> {
|
||||||
loggedInUserId: this.state.differentLoggedInUserId,
|
loggedInUserId: this.state.differentLoggedInUserId,
|
||||||
},
|
},
|
||||||
)}</p>
|
)}</p>
|
||||||
<p><AccessibleButton element="span" className="mx_linkButton" onClick={this.onLoginClickWithCheck}>
|
<p><AccessibleButton element="span" className="mx_linkButton" onClick={async event => {
|
||||||
|
const sessionLoaded = await this.onLoginClickWithCheck(event);
|
||||||
|
if (sessionLoaded) {
|
||||||
|
dis.dispatch({action: "view_welcome_page"});
|
||||||
|
}
|
||||||
|
}}>
|
||||||
{_t("Continue with previous account")}
|
{_t("Continue with previous account")}
|
||||||
</AccessibleButton></p>
|
</AccessibleButton></p>
|
||||||
</div>;
|
</div>;
|
||||||
|
|
Loading…
Reference in a new issue