Skip to content

Commit

Permalink
Merge pull request #207 from grit96/patch-1
Browse files Browse the repository at this point in the history
Fix didReceiveOnStartcallAction not working
  • Loading branch information
manuquentin authored Jun 2, 2020
2 parents e95288a + 73f188d commit 8034d7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/RNCallKeep/RNCallKeep.m
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ + (CXProviderConfiguration *)getProviderConfiguration:(NSDictionary*)settings
int _handleType = [RNCallKeep getHandleType:settings[@"handleType"]];
providerConfiguration.supportedHandleTypes = [NSSet setWithObjects:[NSNumber numberWithInteger:_handleType], nil];
}else{
providerConfiguration.supportedHandleTypes = [NSSet setWithObjects:[NSNumber numberWithInteger:CXHandleTypeGeneric], nil];
providerConfiguration.supportedHandleTypes = [NSSet setWithObjects:[NSNumber numberWithInteger:CXHandleTypePhoneNumber], nil];
}
if (settings[@"supportsVideo"]) {
providerConfiguration.supportsVideo = [settings[@"supportsVideo"] boolValue];
Expand Down

0 comments on commit 8034d7e

Please sign in to comment.