From bd844c44eab02ebe6b57b357318b1397c4400c02 Mon Sep 17 00:00:00 2001 From: Elias Projahn Date: Sat, 28 Mar 2020 09:52:42 +0100 Subject: [PATCH] Always notify listeners of backend The state object may stay the same while there where in fact changes to it that require a notification. --- lib/backend.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/backend.dart b/lib/backend.dart index 9f841ba..cea3de5 100644 --- a/lib/backend.dart +++ b/lib/backend.dart @@ -89,5 +89,5 @@ class _InheritedBackend extends InheritedWidget { }) : super(child: child); @override - bool updateShouldNotify(_InheritedBackend old) => state != old.state; + bool updateShouldNotify(_InheritedBackend old) => true; }