Skip to content

Commit 73f188d

Browse files
authored
Fix didReceiveOnStartcallAction not working
Fixes #206 206
1 parent e95288a commit 73f188d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/RNCallKeep/RNCallKeep.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ + (CXProviderConfiguration *)getProviderConfiguration:(NSDictionary*)settings
462462
int _handleType = [RNCallKeep getHandleType:settings[@"handleType"]];
463463
providerConfiguration.supportedHandleTypes = [NSSet setWithObjects:[NSNumber numberWithInteger:_handleType], nil];
464464
}else{
465-
providerConfiguration.supportedHandleTypes = [NSSet setWithObjects:[NSNumber numberWithInteger:CXHandleTypeGeneric], nil];
465+
providerConfiguration.supportedHandleTypes = [NSSet setWithObjects:[NSNumber numberWithInteger:CXHandleTypePhoneNumber], nil];
466466
}
467467
if (settings[@"supportsVideo"]) {
468468
providerConfiguration.supportsVideo = [settings[@"supportsVideo"] boolValue];

0 commit comments

Comments
 (0)