Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Allow registration to submit for non-fatal errors
Browse files Browse the repository at this point in the history
This allows you to proceed with registration even if the IS is down, for
example.

Fixes element-hq/element-web#10018
  • Loading branch information
jryans committed Jun 11, 2019
1 parent 3836a3e commit b8ed731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/structures/auth/Registration.js
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ module.exports = React.createClass({
onEditServerDetailsClick={onEditServerDetailsClick}
flows={this.state.flows}
serverConfig={this.props.serverConfig}
canSubmit={this.state.serverIsAlive && !this.state.serverErrorIsFatal}
canSubmit={!this.state.serverErrorIsFatal}
/>;
}
},
Expand Down

0 comments on commit b8ed731

Please sign in to comment.