diff --git a/main/pbx.c b/main/pbx.c index a8b33a2ee9..daae9b5713 100644 --- a/main/pbx.c +++ b/main/pbx.c @@ -3756,6 +3756,10 @@ static enum ast_pbx_result __ast_pbx_run(struct ast_channel *c, ast_copy_string(c->context, "default", sizeof(c->context)); } } + if (c->cdr) { + /* allow CDR variables that have been collected after channel was created to be visible during call */ + ast_cdr_update(c); + } for (;;) { char dst_exten[256]; /* buffer to accumulate digits */ int pos = 0; /* XXX should check bounds */