2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-04-29 14:06:47 +00:00

Prevent notification requests if server is not connected

This commit is contained in:
Oliver Walters 2022-05-10 23:49:03 +10:00
parent 23a27fde67
commit b4e8d47d9a

View File

@ -180,6 +180,10 @@ class _InvenTreeHomePageState extends State<InvenTreeHomePage> {
*/ */
Future<void> _refreshNotifications() async { Future<void> _refreshNotifications() async {
if (!InvenTreeAPI().isConnected()) {
return;
}
final notifications = await InvenTreeNotification().list(); final notifications = await InvenTreeNotification().list();
setState(() { setState(() {