There was an error while loading. Please reload this page.
1 parent 03b471f commit e325983Copy full SHA for e325983
2 files changed
lib/Backend/triggers/trigger_action.dart
@@ -29,6 +29,7 @@ class TriggerAction with ChangeNotifier {
29
set isActive(bool value) {
30
if (_isActive == value) {
31
if (value) {
32
+ // Triggers the UI to update if the event that starts this action occurs multiple times
33
_moveTriggeredDuringCooldownController.sink.add(
34
Random().nextInt(100000),
35
);
lib/Backend/utilities/sentry.dart
@@ -149,7 +149,6 @@ Future<void> startSentryApp(Widget child) async {
149
..reportSilentFlutterErrors =
150
true //TODO: configure dynamically after sentry inits
151
..attachScreenshot = true
152
- ..attachViewHierarchy = true
153
..enableTombstone = true
154
..enableLogs = true
155
..privacy.maskAllImages = false
0 commit comments