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 cbac3f6 commit fcb2ad4Copy full SHA for fcb2ad4
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Changelog
2
3
+## Unreleased
4
+
5
+### Fixes
6
7
+- Store envelopes immediately during a fatal crash on iOS ([#3030](https://github.com/getsentry/sentry-react-native/pull/3030))
8
9
## 4.15.0
10
11
### Features
ios/RNSentry.m
@@ -292,7 +292,7 @@ - (void)setEventEnvironmentTag:(SentryEvent *)event
292
#if DEBUG
293
[PrivateSentrySDKOnly captureEnvelope:envelope];
294
#else
295
- if (options[@'store']) {
+ if (options[@"store"]) {
296
// Storing to disk happens asynchronously with captureEnvelope
297
[PrivateSentrySDKOnly storeEnvelope:envelope];
298
} else {
0 commit comments