You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-27 04:21:52 +03:00
Resolve correct screen not being shown after new registration
This commit is contained in:
@ -1182,7 +1182,15 @@ export default createReactClass({
|
|||||||
_onLoggedIn: async function() {
|
_onLoggedIn: async function() {
|
||||||
ThemeController.isLogin = false;
|
ThemeController.isLogin = false;
|
||||||
this.setStateForNewView({ view: VIEWS.LOGGED_IN });
|
this.setStateForNewView({ view: VIEWS.LOGGED_IN });
|
||||||
if (MatrixClientPeg.currentUserIsJustRegistered()) {
|
// If a specific screen is set to be shown after login, show that above
|
||||||
|
// all else, as it probably means the user clicked on something already.
|
||||||
|
if (this._screenAfterLogin && this._screenAfterLogin.screen) {
|
||||||
|
this.showScreen(
|
||||||
|
this._screenAfterLogin.screen,
|
||||||
|
this._screenAfterLogin.params,
|
||||||
|
);
|
||||||
|
this._screenAfterLogin = null;
|
||||||
|
} else if (MatrixClientPeg.currentUserIsJustRegistered()) {
|
||||||
MatrixClientPeg.setJustRegisteredUserId(null);
|
MatrixClientPeg.setJustRegisteredUserId(null);
|
||||||
|
|
||||||
if (this.props.config.welcomeUserId && getCurrentLanguage().startsWith("en")) {
|
if (this.props.config.welcomeUserId && getCurrentLanguage().startsWith("en")) {
|
||||||
|
Reference in New Issue
Block a user