Fixed missing alpha check on DTMF build.
This commit is contained in:
parent
71ef8f1a9f
commit
dbd147977e
1 changed files with 2 additions and 2 deletions
|
@ -161,9 +161,9 @@ class Dtmf {
|
|||
|
||||
fields.forEachIndexed { i, field ->
|
||||
replace.add(Pair(DTMF_FIELD.format(i + 1),
|
||||
if (type.equals(DKS, true)) {
|
||||
if (option.fields[i].alpha && type.equals(DKS, true)) {
|
||||
dksAlphaToDigits(field.text.toString(), ack)
|
||||
} else if (type.equals(LINEAR, true)) {
|
||||
} else if (option.fields[i].alpha && type.equals(LINEAR, true)) {
|
||||
linearAlphaToDigits(field.text.toString())
|
||||
} else {
|
||||
field.text.toString()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue