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 f6e1c30 commit 79838ffCopy full SHA for 79838ff
ios/RNSentry.m
@@ -132,7 +132,11 @@ - (NSInteger)indexOfReactNativeCallFrame:(NSArray<SentryFrame *> *)frames native
132
}
133
134
- (void)injectReactNativeFrames:(SentryEvent *)event {
135
- NSString *address = event.extra[@"__sentry_address"];
+ NSString *address = [event.extra valueForKey:@"__sentry_address"];
136
+ if (nil == address) {
137
+ // We bail out here since __sentry_address is not set
138
+ return;
139
+ }
140
SentryThread *crashedThread = nil;
141
for (SentryThread *thread in event.threads) {
142
if ([thread.crashed boolValue]) {
0 commit comments