summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2008-04-10 14:53:19 +0000
committerJoshua Colp <jcolp@digium.com>2008-04-10 14:53:19 +0000
commitc9338b76eead3aa491755f7a6ef5c1a4fa6d458a (patch)
tree1466e352e71113d6d67f14eb42664945fa24ba4c /apps
parent4a21c5dd2209c83e6a1e7d5b9e26b530de436fca (diff)
Don't hardcode ru into the digits filename so that languageprefix can work.
(closes issue #12404) Reported by: IgorG Patches: voicemail_ru_hardcoded-v1.patch uploaded by IgorG (license 20) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@114027 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index e787f87c2..99744dc73 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -6636,7 +6636,7 @@ static int vm_intro_ru(struct ast_channel *chan, struct vm_state *vms)
res = say_and_wait(chan, dcnum, chan->language);
if (!res && lastnum) {
if (lastnum == 1)
- res = ast_play_and_wait(chan, "digits/ru/odno");
+ res = ast_play_and_wait(chan, "digits/odno");
else
res = say_and_wait(chan, lastnum, chan->language);
}
@@ -6655,7 +6655,7 @@ static int vm_intro_ru(struct ast_channel *chan, struct vm_state *vms)
res = say_and_wait(chan, dcnum, chan->language);
if (!res && lastnum) {
if (lastnum == 1)
- res = ast_play_and_wait(chan, "digits/ru/odno");
+ res = ast_play_and_wait(chan, "digits/odno");
else
res = say_and_wait(chan, lastnum, chan->language);
}