fix: Missing mounted check

This commit is contained in:
Christian Pauly 2022-11-21 17:53:01 +01:00
parent 3c48f476eb
commit 32a88d960a

View file

@ -96,6 +96,7 @@ class HomeserverPickerController extends State<HomeserverPicker> {
homeserverList,
timeout: const Duration(seconds: 10),
);
if (!mounted) return;
setState(() {
benchmarkResults = benchmark;
});