···11+diff --git a/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js b/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js
22+index 7e0b4cd..177454c 100644
33+--- a/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js
44++++ b/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js
55+@@ -3,6 +3,8 @@ import { LogBox } from 'react-native';
66+ * This is a workaround for using fetch on RN, this is a known issue in react-native and only generates a warning.
77+ */
88+ export function ignoreRequireCycleLogs() {
99+- LogBox.ignoreLogs(['Require cycle:']);
1010++ try {
1111++ LogBox.ignoreLogs(['Require cycle:']);
1212++ } catch (e) {}
1313+ }
1414+ //# sourceMappingURL=ignorerequirecyclelogs.js.map
1515+\ No newline at end of file
1616+diff --git a/node_modules/@sentry/react-native/ios/RNSentry.mm b/node_modules/@sentry/react-native/ios/RNSentry.mm
1717+index 392869c..29bcd8b 100644
1818+--- a/node_modules/@sentry/react-native/ios/RNSentry.mm
1919++++ b/node_modules/@sentry/react-native/ios/RNSentry.mm
2020+@@ -452,6 +452,11 @@ - (NSDictionary*) fetchNativeStackFramesBy: (NSArray<NSNumber*>*)instructionsAdd
2121+ resolve:(RCTPromiseResolveBlock)resolve
2222+ rejecter:(RCTPromiseRejectBlock)reject)
2323+ {
2424++ if ([rawBytes isKindOfClass:[NSArray class]]) {
2525++ resolve(@YES);
2626++ return;
2727++ }
2828++
2929+ NSData *data = [[NSData alloc] initWithBase64EncodedString:rawBytes options:0];
3030+3131+ SentryEnvelope *envelope = [PrivateSentrySDKOnly envelopeWithData:data];
-15
patches/@sentry+react-native+5.5.0.patch
···11-diff --git a/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js b/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js
22-index 7e0b4cd..177454c 100644
33---- a/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js
44-+++ b/node_modules/@sentry/react-native/dist/js/utils/ignorerequirecyclelogs.js
55-@@ -3,6 +3,8 @@ import { LogBox } from 'react-native';
66- * This is a workaround for using fetch on RN, this is a known issue in react-native and only generates a warning.
77- */
88- export function ignoreRequireCycleLogs() {
99-- LogBox.ignoreLogs(['Require cycle:']);
1010-+ try {
1111-+ LogBox.ignoreLogs(['Require cycle:']);
1212-+ } catch (e) {}
1313- }
1414- //# sourceMappingURL=ignorerequirecyclelogs.js.map
1515-\ No newline at end of file