From 59c5b0545e1da8f745b71d258edcac8defddb08e Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Fri, 3 Oct 2014 15:33:45 +0200 Subject: [PATCH] Fix playing romanian folder name. --- apps/app_voicemail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index b49ed52..e579922 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -5840,7 +5840,7 @@ static int vm_play_folder_name_ro(struct ast_channel *chan, char *mbox) } */ cmd = ast_play_and_wait(chan, "vm-messages"); - return cmd ? cmd : ast_play_and_wait(chan, "vm-INBOX"); + return cmd ? cmd : ast_play_and_wait(chan, mbox); } static int vm_play_folder_name(struct ast_channel *chan, char *mbox)