mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-01 03:04:19 +00:00
Merge "main/cdr: Allow setting properties on a finalized CDR if it is the last one"
This commit is contained in:
@@ -2976,7 +2976,7 @@ int ast_cdr_setvar(const char *channel_name, const char *name, const char *value
|
||||
for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
|
||||
struct varshead *headp = NULL;
|
||||
|
||||
if (it_cdr->fn_table == &finalized_state_fn_table) {
|
||||
if (it_cdr->fn_table == &finalized_state_fn_table && it_cdr->next != NULL) {
|
||||
continue;
|
||||
}
|
||||
if (!strcasecmp(channel_name, it_cdr->party_a.snapshot->name)) {
|
||||
|
||||
Reference in New Issue
Block a user