Skip to content

Commit e487572

Browse files
committed
formatted code
1 parent 94fa6d4 commit e487572

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

flutter/lib/src/integrations/load_image_list_integration.dart

+4-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ extension _NeedsSymbolication on SentryEvent {
3838
}
3939
if (threads?.isNotEmpty == true) {
4040
var stacktraces = threads?.map((e) => e.stacktrace);
41-
return stacktraces?.where((element) => element != null).expand((element) => element!.frames).toList();
41+
return stacktraces
42+
?.where((element) => element != null)
43+
.expand((element) => element!.frames)
44+
.toList();
4245
}
4346
return null;
4447
}

0 commit comments

Comments
 (0)