Skip to content

Commit 54083ca

Browse files
authored
fix/pass EXTRA_DIGITS correctly when calling sendDigits() from custom dialpad
1 parent 3a8381e commit 54083ca

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
@@ -995,7 +995,7 @@ class TwilioVoicePlugin : FlutterPlugin, MethodCallHandler, EventChannel.StreamH
995995
Intent(ctx, TVConnectionService::class.java).apply {
996996
action = TVConnectionService.ACTION_SEND_DIGITS
997997
putExtra(TVConnectionService.EXTRA_CALL_HANDLE, callSid)
998-
putExtra(TVConnectionService.ACTION_SEND_DIGITS, digits)
998+
putExtra(TVConnectionService.EXTRA_DIGITS, digits)
999999
ctx.startService(this)
10001000
}
10011001
return true

0 commit comments

Comments
 (0)