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 e56f79c commit b211ce3Copy full SHA for b211ce3
ios/RNCallKeep/RNCallKeep.m
@@ -430,8 +430,8 @@ + (CXProviderConfiguration *)getProviderConfiguration:(NSDictionary*)settings
430
providerConfiguration.ringtoneSound = settings[@"ringtoneSound"];
431
}
432
if (@available(iOS 11.0, *)) {
433
- if (_settings[@"includesCallsInRecents"]) {
434
- providerConfiguration.includesCallsInRecents = [_settings[@"includesCallsInRecents"] boolValue];
+ if (settings[@"includesCallsInRecents"]) {
+ providerConfiguration.includesCallsInRecents = [settings[@"includesCallsInRecents"] boolValue];
435
436
437
return providerConfiguration;
0 commit comments