Browse Source

neon: Remove quirk for failing login with pre-provided credentials

pull/118/head
jld3103 2 years ago
parent
commit
cbf40e35a1
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 14
      packages/neon/lib/src/pages/login.dart

14
packages/neon/lib/src/pages/login.dart

@ -163,20 +163,6 @@ class _LoginPageState extends State<LoginPage> {
); );
} }
}, },
onPageFinished: (final url) async {
if (Provider.of<Env?>(context, listen: false) != null) {
// There seems to be a bug where the first try with provided authentication header
// always fails, but all the following ones work. This just restarts the flow if it sees
// an error.
// To be clear: This doesn't happen without pre-provided authentication,
// so it's not a concern while still being a bug somewhere.
final result = await _webViewController!
.runJavascriptReturningResult('document.getElementsByClassName("error").length');
if (result == '1') {
_loginBloc.setServerURL(serverURLSnapshot.data);
}
}
},
) )
: Center( : Center(
child: Column( child: Column(

Loading…
Cancel
Save