Bug fixes

This commit is contained in:
Juan Gilsanz Polo 2023-10-04 19:20:43 +02:00
parent bc7cb4ccd4
commit 525facc538
9 changed files with 171 additions and 121 deletions

View file

@ -304,7 +304,7 @@ class _HomeState extends State<Home> {
displacement: 95,
onRefresh: () async {
final result = await statusProvider.getServerStatus();
if (result == false) {
if (mounted && result == false) {
showSnacbkar(
appConfigProvider: appConfigProvider,
label: AppLocalizations.of(context)!.serverStatusNotRefreshed,