We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94fa6d4 commit e487572Copy full SHA for e487572
flutter/lib/src/integrations/load_image_list_integration.dart
@@ -38,7 +38,10 @@ extension _NeedsSymbolication on SentryEvent {
38
}
39
if (threads?.isNotEmpty == true) {
40
var stacktraces = threads?.map((e) => e.stacktrace);
41
- return stacktraces?.where((element) => element != null).expand((element) => element!.frames).toList();
+ return stacktraces
42
+ ?.where((element) => element != null)
43
+ .expand((element) => element!.frames)
44
+ .toList();
45
46
return null;
47
0 commit comments