Merge pull request #4854 from matrix-org/t3chguy/fix-redirect-loop
Including start_sso and start_cas in redirect loop preventionpull/21833/head
commit
cd06910713
|
@ -1932,11 +1932,12 @@ export default class MatrixChat extends React.PureComponent<IProps, IState> {
|
||||||
|
|
||||||
getFragmentAfterLogin() {
|
getFragmentAfterLogin() {
|
||||||
let fragmentAfterLogin = "";
|
let fragmentAfterLogin = "";
|
||||||
if (this.props.initialScreenAfterLogin &&
|
const initialScreenAfterLogin = this.props.initialScreenAfterLogin;
|
||||||
|
if (initialScreenAfterLogin &&
|
||||||
// XXX: workaround for https://github.com/vector-im/riot-web/issues/11643 causing a login-loop
|
// XXX: workaround for https://github.com/vector-im/riot-web/issues/11643 causing a login-loop
|
||||||
!["welcome", "login", "register"].includes(this.props.initialScreenAfterLogin.screen)
|
!["welcome", "login", "register", "start_sso", "start_cas"].includes(initialScreenAfterLogin.screen)
|
||||||
) {
|
) {
|
||||||
fragmentAfterLogin = `/${this.props.initialScreenAfterLogin.screen}`;
|
fragmentAfterLogin = `/${initialScreenAfterLogin.screen}`;
|
||||||
}
|
}
|
||||||
return fragmentAfterLogin;
|
return fragmentAfterLogin;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue