Skip to content

Commit db09d78

Browse files
committed
Update changelog
1 parent 7a8774d commit db09d78

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Fixes
6+
7+
- Fixes stacktraces for MetricKit events (#6908)
8+
39
## 9.1.0
410

511
> [!Warning]

Sources/Sentry/SentryMetricKitIntegration.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,9 @@ - (void)didReceiveHangDiagnostic:(MXHangDiagnostic *)diagnostic
196196
params.exceptionMechanism = SentryMetricKitHangDiagnosticMechanism;
197197
params.timeStampBegin = timeStampBegin;
198198

199-
[self captureMXEvent:callStackTree params:params diagnosticJSON:[NSData data]];
199+
[self captureMXEvent:callStackTree
200+
params:params
201+
diagnosticJSON:[diagnostic JSONRepresentation]];
200202
}
201203

202204
- (void)captureMXEvent:(SentryMXCallStackTree *)callStackTree

0 commit comments

Comments
 (0)