Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix: missing app's stack traces for flutter errors
  • Loading branch information
marandaneto committed Nov 23, 2020
commit b08618eb88e214b4e883fc1e10016fb6b9221d04
6 changes: 5 additions & 1 deletion dart/lib/src/hub_adapter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ class HubAdapter implements Hub {
dynamic stackTrace,
dynamic hint,
}) =>
Sentry.captureEvent(event, hint: hint);
Sentry.captureEvent(
event,
stackTrace: stackTrace,
hint: hint,
);

@override
Future<SentryId> captureException(
Expand Down