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: https://origsvn.digium.com/svn/asterisk/branches/1.2@37571 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.2
Kevin P. Fleming 20 years ago
parent 1d8f732f3f
commit 6ea65400a0

@ -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;
}

Loading…
Cancel
Save