Skip to content
Snippets Groups Projects
Commit c4aa1dad authored by Mark Spencer's avatar Mark Spencer
Browse files

Use file that is in Asterisk rather than asterisk-sounds (bug #2445)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3783 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 556f27ec
No related branches found
No related tags found
No related merge requests found
......@@ -2478,12 +2478,12 @@ static void bridge_playfile(struct ast_channel *chan, struct ast_channel *peer,
res = ast_waitstream(chan, "");
if (min) {
res = ast_say_number(chan, min, AST_DIGIT_ANY, chan->language, (char *) NULL);
res = ast_streamfile(chan, "minutes", chan->language);
res = ast_streamfile(chan, "queue-minutes", chan->language);
res = ast_waitstream(chan, "");
}
if (sec) {
res = ast_say_number(chan, sec, AST_DIGIT_ANY, chan->language, (char *) NULL);
res = ast_streamfile(chan, "seconds", chan->language);
res = ast_streamfile(chan, "queue-seconds", chan->language);
res = ast_waitstream(chan, "");
}
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment