提交 cf47982e authored 作者: Anthony Minessale's avatar Anthony Minessale

FS-4049 alt patch

上级 973a39e0
......@@ -2454,6 +2454,20 @@ static int sofia_presence_sub_callback(void *pArg, int argc, char **argv, char *
} else {
from_id = switch_str_nil(switch_event_get_header(helper->event, "Other-Leg-Caller-ID-Number"));
}
if (zstr(from_id)) {
from_id = switch_str_nil(switch_event_get_header(helper->event, "Caller-Callee-ID-Number"));
}
if (zstr(from_id)) {
from_id = switch_str_nil(switch_event_get_header(helper->event, "Caller-Destination-Number"));
}
if (zstr(from_id)) {
from_id = "n/a";
}
#if 0
char *buf;
switch_event_serialize(helper->event, &buf, SWITCH_FALSE);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论