Update way of checking for registration disabled
Spec says 403 + M_FORBIDDEN
This commit is contained in:
parent
30e136d103
commit
826efeaeaa
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ export default class Registration extends React.Component<IProps, IState> {
|
||||||
this.setState({
|
this.setState({
|
||||||
flows: e.data.flows,
|
flows: e.data.flows,
|
||||||
});
|
});
|
||||||
} else if (e.httpStatus === 403 && e.errcode === "M_UNKNOWN") {
|
} else if (e.httpStatus === 403 || e.errcode === "M_FORBIDDEN") {
|
||||||
// At this point registration is pretty much disabled, but before we do that let's
|
// At this point registration is pretty much disabled, but before we do that let's
|
||||||
// quickly check to see if the server supports SSO instead. If it does, we'll send
|
// quickly check to see if the server supports SSO instead. If it does, we'll send
|
||||||
// the user off to the login page to figure their account out.
|
// the user off to the login page to figure their account out.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue