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 7a8774d commit db09d78Copy full SHA for db09d78
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
3
+## Unreleased
4
+
5
+### Fixes
6
7
+- Fixes stacktraces for MetricKit events (#6908)
8
9
## 9.1.0
10
11
> [!Warning]
Sources/Sentry/SentryMetricKitIntegration.m
@@ -196,7 +196,9 @@ - (void)didReceiveHangDiagnostic:(MXHangDiagnostic *)diagnostic
196
params.exceptionMechanism = SentryMetricKitHangDiagnosticMechanism;
197
params.timeStampBegin = timeStampBegin;
198
199
- [self captureMXEvent:callStackTree params:params diagnosticJSON:[NSData data]];
+ [self captureMXEvent:callStackTree
200
+ params:params
201
+ diagnosticJSON:[diagnostic JSONRepresentation]];
202
}
203
204
- (void)captureMXEvent:(SentryMXCallStackTree *)callStackTree
0 commit comments