FS-5403 --resolve

This commit is contained in:
Anthony Minessale 2013-05-10 09:59:02 -05:00
parent e44c278c68
commit e5754ab3ee
1 changed files with 10 additions and 1 deletions

View File

@ -8276,7 +8276,16 @@ void sofia_handle_sip_i_invite(switch_core_session_t *session, nua_t *nua, sofia
for (mp = sip->sip_multipart; mp; mp = mp->mp_next) {
if (mp->mp_payload && mp->mp_payload->pl_data && mp->mp_content_type && mp->mp_content_type->c_type) {
switch_channel_set_variable_name_printf(channel, mp->mp_payload->pl_data, SOFIA_MULTIPART_PREFIX "%s", mp->mp_content_type->c_type);
char *name = switch_core_session_strdup(session, mp->mp_content_type->c_type);
char *p;
for (p = name; p && *p; p++) {
if (*p == '/') {
*p = '_';
}
}
switch_channel_set_variable_name_printf(channel, mp->mp_payload->pl_data, SOFIA_MULTIPART_PREFIX "%s", name);
}
}
}