Merge "func_cdr: honour 'u' flag on dummy channel"

This commit is contained in:
Jenkins2 2017-09-07 11:00:08 -05:00 committed by Gerrit Code Review
commit fba2f65027
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ static void cdr_read_callback(void *data, struct stasis_subscription *sub, struc
if (ast_strlen_zero(ast_channel_name(payload->chan))) {
/* Format request on a dummy channel */
ast_cdr_format_var(ast_channel_cdr(payload->chan), args.variable, &value, tempbuf, sizeof(tempbuf), 0);
ast_cdr_format_var(ast_channel_cdr(payload->chan), args.variable, &value, tempbuf, sizeof(tempbuf), ast_test_flag(&flags, OPT_UNPARSED));
if (ast_strlen_zero(value)) {
return;
}