2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-06-12 02:05:29 +00:00

Check if widget is mounted before calling setstate() (#193)

This commit is contained in:
Oliver
2022-07-29 20:01:06 +10:00
committed by GitHub
parent b7a37e50c5
commit c5162c1947
6 changed files with 48 additions and 29 deletions

View File

@ -177,7 +177,9 @@ class _InvenTreeHomePageState extends State<InvenTreeHomePage> {
// Attempt server connection
InvenTreeAPI().connectToServer().then((result) {
setState(() {});
if (mounted) {
setState(() {});
}
});
}
}