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 2e2dcbe commit 4bd2501Copy full SHA for 4bd2501
ios/RNSentry.m
@@ -211,11 +211,11 @@ - (void)setReleaseVersionDist:(SentryEvent *)event {
211
212
- (void)swizzleCallNativeModule:(Class)class {
213
static const void *key = &key;
214
- SEL selctor = @selector(callNativeModule:method:params:);
215
- uintptr_t callNativeModuleAddress = [class instanceMethodForSelector:selctor];
+ SEL selector = @selector(callNativeModule:method:params:);
+ uintptr_t callNativeModuleAddress = [class instanceMethodForSelector:selector];
216
217
SentrySwizzleInstanceMethod(class,
218
- selctor,
+ selector,
219
SentrySWReturnType(id),
220
SentrySWArguments(NSUInteger moduleID, NSUInteger methodID, NSArray *params),
221
SentrySWReplacement({
0 commit comments