fix: Signup on matrix.org

onboarding
Krille Fear 3 years ago
parent 5a3cb04300
commit 87bc60717e

@ -101,7 +101,9 @@ class SignupPageController extends State<SignupPage> {
} catch (e) {
error = (e as Object).toLocalizedString(context);
} finally {
setState(() => loading = false);
if (mounted) {
setState(() => loading = false);
}
}
}

@ -141,10 +141,7 @@ class HomeserverPickerView extends StatelessWidget {
labelText: L10n.of(context).login,
),
),
if (controller.registrationSupported &&
// Registration is broken on matrix.org
Matrix.of(context).client.homeserver.host !=
'matrix-client.matrix.org')
if (controller.registrationSupported)
Center(
child: _LoginButton(
onPressed: controller.signUpAction,

Loading…
Cancel
Save