don't double encode events when sending them
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13078 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
97c76b2563
commit
1c2ab4a004
|
@ -433,7 +433,7 @@ ESL_DECLARE(esl_status_t) esl_sendevent(esl_handle_t *handle, esl_event_t *event
|
|||
return ESL_FAIL;
|
||||
}
|
||||
|
||||
esl_event_serialize(event, &txt, ESL_TRUE);
|
||||
esl_event_serialize(event, &txt, ESL_FALSE);
|
||||
|
||||
esl_log(ESL_LOG_DEBUG, "SEND EVENT\n%s\n", txt);
|
||||
|
||||
|
|
Loading…
Reference in New Issue