fix it to say thousand for the hundred thousands place.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3790 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
431ae09c25
commit
f7ee2c8138
|
@ -96,7 +96,7 @@ static switch_status_t en_say(switch_core_session_t *session,
|
|||
switch_ivr_play_file(session, NULL, tmp, NULL, input_callback, buf, buflen);
|
||||
}
|
||||
|
||||
if (places[4] || places[3]) {
|
||||
if (places[5] || places[4] || places[3]) {
|
||||
switch_ivr_play_file(session, NULL, "digits/thousand.wav", NULL, input_callback, buf, buflen);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue