From f4e1b97ccda5d9350255ac07d547a5543b2d16d9 Mon Sep 17 00:00:00 2001 From: Mathieu Rene Date: Tue, 15 Dec 2009 18:45:29 +0000 Subject: [PATCH] FSCORE-514 git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@15970 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_ivr.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/switch_ivr.c b/src/switch_ivr.c index 1cf1617d07..5af2456785 100644 --- a/src/switch_ivr.c +++ b/src/switch_ivr.c @@ -503,10 +503,15 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_parse_event(switch_core_session_t *se if (cmd_hash == CMD_EXECUTE) { char *app_name = switch_event_get_header(event, "execute-app-name"); char *app_arg = switch_event_get_header(event, "execute-app-arg"); + char *content_type = switch_event_get_header(event, "content-type"); char *loop_h = switch_event_get_header(event, "loops"); char *hold_bleg = switch_event_get_header(event, "hold-bleg"); int loops = 1; + if (zstr(app_arg) && !zstr(content_type) && !strcasecmp(content_type, "text/plain")) { + app_arg = switch_event_get_body(event); + } + if (loop_h) { loops = atoi(loop_h); }