Skip to content

Commit 7f4af49

Browse files
authored
Merge pull request #157 from cybex-dev/feat_android_connection_service
Fix hanging up on sending digits
2 parents 64d9ebe + e8ac88d commit 7f4af49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/kotlin/com/twilio/twilio_voice/TwilioVoicePlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -895,7 +895,7 @@ class TwilioVoicePlugin : FlutterPlugin, MethodCallHandler, EventChannel.StreamH
895895
// Send to active call via Intent
896896
context?.let { ctx ->
897897
Intent(ctx, TVConnectionService::class.java).apply {
898-
action = TVConnectionService.ACTION_HANGUP
898+
action = TVConnectionService.ACTION_SEND_DIGITS
899899
putExtra(TVConnectionService.EXTRA_CALL_HANDLE, callSid)
900900
putExtra(TVConnectionService.ACTION_SEND_DIGITS, digits)
901901
ctx.startService(this)

0 commit comments

Comments
 (0)