Skip to content

Commit e325983

Browse files
committed
disable attachViewHierarchy in sentry as its not useful
1 parent 03b471f commit e325983

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

lib/Backend/triggers/trigger_action.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class TriggerAction with ChangeNotifier {
2929
set isActive(bool value) {
3030
if (_isActive == value) {
3131
if (value) {
32+
// Triggers the UI to update if the event that starts this action occurs multiple times
3233
_moveTriggeredDuringCooldownController.sink.add(
3334
Random().nextInt(100000),
3435
);

lib/Backend/utilities/sentry.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ Future<void> startSentryApp(Widget child) async {
149149
..reportSilentFlutterErrors =
150150
true //TODO: configure dynamically after sentry inits
151151
..attachScreenshot = true
152-
..attachViewHierarchy = true
153152
..enableTombstone = true
154153
..enableLogs = true
155154
..privacy.maskAllImages = false

0 commit comments

Comments
 (0)