Skip to content

Commit b211ce3

Browse files
author
Kyle Kurz
committed
_settings -> settings
1 parent e56f79c commit b211ce3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ios/RNCallKeep/RNCallKeep.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,8 +430,8 @@ + (CXProviderConfiguration *)getProviderConfiguration:(NSDictionary*)settings
430430
providerConfiguration.ringtoneSound = settings[@"ringtoneSound"];
431431
}
432432
if (@available(iOS 11.0, *)) {
433-
if (_settings[@"includesCallsInRecents"]) {
434-
providerConfiguration.includesCallsInRecents = [_settings[@"includesCallsInRecents"] boolValue];
433+
if (settings[@"includesCallsInRecents"]) {
434+
providerConfiguration.includesCallsInRecents = [settings[@"includesCallsInRecents"] boolValue];
435435
}
436436
}
437437
return providerConfiguration;

0 commit comments

Comments
 (0)