omikit-plugin 2.1.2 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -226,8 +226,8 @@ class OmikitPluginModule(reactContext: ReactApplicationContext?) :
|
|
|
226
226
|
currentActivity?.runOnUiThread {
|
|
227
227
|
val phoneNumber = data.getString("phoneNumber") as String
|
|
228
228
|
val isVideo = data.getBoolean("isVideo")
|
|
229
|
-
|
|
230
|
-
promise.resolve(
|
|
229
|
+
OmiClient.instance.startCall(phoneNumber, isVideo)
|
|
230
|
+
promise.resolve(true)
|
|
231
231
|
}
|
|
232
232
|
}
|
|
233
233
|
|