Redirect to the registration page if there's a 3PID invite

Fixes https://github.com/vector-im/element-web/issues/15130
This commit is contained in:
Travis Ralston 2020-09-11 19:53:52 -06:00
parent dc44b9ef59
commit b1cdf1bc9a

View file

@ -413,8 +413,12 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
});
}).then((loadedSession) => {
if (!loadedSession) {
// fall back to showing the welcome screen
dis.dispatch({action: "view_welcome_page"});
// fall back to showing the welcome screen... unless we have a 3pid invite pending
if (ThreepidInviteStore.instance.pickBestInvite()) {
dis.dispatch({action: 'start_registration'});
} else {
dis.dispatch({action: "view_welcome_page"});
}
}
});
// Note we don't catch errors from this: we catch everything within