mirror of https://github.com/vector-im/riot-web
Don't forget to show the homepage if no welcome user
parent
8fa50b26a6
commit
929e9dc653
|
@ -1191,9 +1191,14 @@ export default React.createClass({
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// The user has just logged in after registering
|
// We didn't rediret to the welcome user room, so show
|
||||||
|
// the homepage.
|
||||||
dis.dispatch({action: 'view_home_page'});
|
dis.dispatch({action: 'view_home_page'});
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
// The user has just logged in after registering,
|
||||||
|
// so show the homepage.
|
||||||
|
dis.dispatch({action: 'view_home_page'});
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this._showScreenAfterLogin();
|
this._showScreenAfterLogin();
|
||||||
|
|
Loading…
Reference in New Issue