diff --git a/src/ios/CordovaCall.m b/src/ios/CordovaCall.m index a483a96..0f1003f 100644 --- a/src/ios/CordovaCall.m +++ b/src/ios/CordovaCall.m @@ -233,6 +233,7 @@ - (void)sendCall:(CDVInvokedUrlCommand*)command CXTransaction *transaction = [[CXTransaction alloc] initWithAction:startCallAction]; [self.callController requestTransaction:transaction completion:^(NSError * _Nullable error) { if (error == nil) { + [self.provider reportOutgoingCallWithUUID:callUUID startedConnectingAtDate:nil]; [self.commandDelegate sendPluginResult:[CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:@"Outgoing call successful"] callbackId:command.callbackId]; } else { [self.commandDelegate sendPluginResult:[CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsString:[error localizedDescription]] callbackId:command.callbackId];