diff --git a/src/components/structures/auth/Registration.tsx b/src/components/structures/auth/Registration.tsx index 976f359961..42b64c8ac3 100644 --- a/src/components/structures/auth/Registration.tsx +++ b/src/components/structures/auth/Registration.tsx @@ -382,7 +382,8 @@ export default class Registration extends React.Component { const hasEmail = Boolean(this.state.formVals.email); const hasAccessToken = Boolean(response.access_token); debuglog("Registration: ui auth finished:", { hasEmail, hasAccessToken }); - if (!hasEmail && hasAccessToken) { + // don’t log in if we found a session for a different user + if (!hasEmail && hasAccessToken && !newState.differentLoggedInUserId) { // we'll only try logging in if we either have no email to verify at all or we're the client that verified // the email, not the client that started the registration flow await this.props.onLoggedIn({