Skip to content

Commit

Permalink
Merge pull request #264 from ryojiro/fix_outgoing_call_method_name_fo…
Browse files Browse the repository at this point in the history
…r_call_kit

ios: SwiftFlutterCallkitIncomingPlugin: Fix parameter's name.
  • Loading branch information
hiennguyen92 authored May 13, 2023
2 parents 36c4fc6 + 5a77ddf commit 855ff49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ios/Classes/SwiftFlutterCallkitIncomingPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ public class SwiftFlutterCallkitIncomingPlugin: NSObject, FlutterPlugin, CXProvi
self?.sharedProvider?.reportOutgoingCall(with: call.uuid, startedConnectingAt: call.connectData)
}
call.hasConnectDidChange = { [weak self] in
self?.sharedProvider?.reportOutgoingCall(with: call.uuid, startedConnectingAt: call.connectedData)
self?.sharedProvider?.reportOutgoingCall(with: call.uuid, connectedAt: call.connectedData)
}
self.outgoingCall = call;
self.callManager?.addCall(call)
Expand Down

0 comments on commit 855ff49

Please sign in to comment.