FS-3530 --resolve

This commit is contained in:
Jeff Lenk 2011-08-30 09:01:07 -05:00
parent 69668f9cc7
commit 11bcc60077
1 changed files with 2 additions and 2 deletions

View File

@ -407,7 +407,7 @@ static switch_status_t generate_json_cdr(switch_core_session_t *session, struct
json_object_object_add(j_application, "last_executed", json_object_new_string("true"));
}
json_object_object_add(j_application, "app_name", json_object_new_string(ap->application_name));
json_object_object_add(j_application, "app_data", json_object_new_string(ap->application_data));
json_object_object_add(j_application, "app_data", json_object_new_string(switch_str_nil(ap->application_data)));
}
if (caller_profile->caller_extension->children) {
@ -454,7 +454,7 @@ static switch_status_t generate_json_cdr(switch_core_session_t *session, struct
json_object_object_add(j_application, "last_executed", json_object_new_string("true"));
}
json_object_object_add(j_application, "app_name", json_object_new_string(ap->application_name));
json_object_object_add(j_application, "app_data", json_object_new_string(ap->application_data));
json_object_object_add(j_application, "app_data", json_object_new_string(switch_str_nil(ap->application_data)));
}
}
}