split on space not colon
This commit is contained in:
parent
2b7a830d6d
commit
96ddc51faa
|
@ -639,7 +639,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_parse_event(switch_core_session_t *se
|
|||
|
||||
if (!strcasecmp(hp->name, "application")) {
|
||||
app = strdup(hp->value);
|
||||
data = strchr(app, ':');
|
||||
data = strchr(app, ' ');
|
||||
|
||||
if (data) {
|
||||
*data++ = '\0';
|
||||
|
|
Loading…
Reference in New Issue