Skip to content

Commit 832ef6c

Browse files
authored
Merge pull request #290 from fried-jay/fix/send_digit
fix/pass EXTRA_DIGITS correctly when calling sendDigits() from custom…
2 parents 3a8381e + 54083ca commit 832ef6c

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)