From 6ca0de95a49357c471d9502a6a6a930e3bfb010a Mon Sep 17 00:00:00 2001 From: kpfleming Date: Thu, 13 Jul 2006 21:22:11 +0000 Subject: don't fail/abort if the message category sound file cannot be played, just generate a warning message and continue message playback git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@37571 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_voicemail.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'apps/app_voicemail.c') diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index 4402d4d4f..36ca228bf 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -3633,6 +3633,11 @@ static int play_message_category(struct ast_channel *chan, char *category) if (!ast_strlen_zero(category)) res = ast_play_and_wait(chan, category); + if (res) { + ast_log(LOG_WARNING, "No sound file for category '%s' was found.\n", category); + res = 0; + } + return res; } -- cgit v1.2.3