From b8ed731c8934c1fc9fa6601c5c059e98194948e2 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Tue, 11 Jun 2019 18:01:27 +0100 Subject: [PATCH] Allow registration to submit for non-fatal errors This allows you to proceed with registration even if the IS is down, for example. Fixes https://github.com/vector-im/riot-web/issues/10018 --- src/components/structures/auth/Registration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/structures/auth/Registration.js b/src/components/structures/auth/Registration.js index dbcd01366c..bf4a86e410 100644 --- a/src/components/structures/auth/Registration.js +++ b/src/components/structures/auth/Registration.js @@ -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} />; } },