mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-12-18 10:52:34 +01:00
fix: Dont rerun server checks
This commit is contained in:
parent
7d6a10e7a5
commit
3126ce27f9
@ -103,24 +103,28 @@ class HomeserverPickerController extends State<HomeserverPicker> {
|
||||
_intentDataStreamSubscription?.cancel();
|
||||
}
|
||||
|
||||
String _lastCheckedHomeserver;
|
||||
|
||||
/// Starts an analysis of the given homeserver. It uses the current domain and
|
||||
/// makes sure that it is prefixed with https. Then it searches for the
|
||||
/// well-known information and forwards to the login page depending on the
|
||||
/// login type.
|
||||
Future<void> checkHomeserverAction() async {
|
||||
_coolDown?.cancel();
|
||||
if (_lastCheckedHomeserver == domain) return;
|
||||
if (domain.isEmpty) throw L10n.of(context).changeTheHomeserver;
|
||||
var homeserver = domain;
|
||||
|
||||
if (!homeserver.startsWith('https://')) {
|
||||
homeserver = 'https://$homeserver';
|
||||
}
|
||||
|
||||
setState(() {
|
||||
error = _rawLoginTypes = registrationSupported = null;
|
||||
isLoading = true;
|
||||
});
|
||||
|
||||
try {
|
||||
if (domain.isEmpty) throw L10n.of(context).changeTheHomeserver;
|
||||
var homeserver = domain;
|
||||
|
||||
if (!homeserver.startsWith('https://')) {
|
||||
homeserver = 'https://$homeserver';
|
||||
}
|
||||
|
||||
setState(() {
|
||||
error = _rawLoginTypes = registrationSupported = null;
|
||||
isLoading = true;
|
||||
});
|
||||
final wellKnown =
|
||||
await Matrix.of(context).getLoginClient().checkHomeserver(homeserver);
|
||||
|
||||
@ -151,6 +155,7 @@ class HomeserverPickerController extends State<HomeserverPicker> {
|
||||
} catch (e) {
|
||||
setState(() => error = (e as Object).toLocalizedString(context));
|
||||
} finally {
|
||||
_lastCheckedHomeserver = domain;
|
||||
if (mounted) {
|
||||
setState(() => isLoading = false);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user