提交 0920645d authored 作者: Anthony Minessale's avatar Anthony Minessale

update

上级 534d3bcb
...@@ -3499,6 +3499,10 @@ SWITCH_STANDARD_API(sofia_contact_function) ...@@ -3499,6 +3499,10 @@ SWITCH_STANDARD_API(sofia_contact_function)
domain = profile->name; domain = profile->name;
} }
if (!zstr(profile->domain_name) && !zstr(profile_name) && !strcmp(profile_name, profile->name)) {
domain = profile->domain_name;
}
select_from_profile(profile, user, domain, concat, exclude_contact, &mystream); select_from_profile(profile, user, domain, concat, exclude_contact, &mystream);
sofia_glue_release_profile(profile); sofia_glue_release_profile(profile);
...@@ -3937,7 +3941,7 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session ...@@ -3937,7 +3941,7 @@ static switch_call_cause_t sofia_outgoing_channel(switch_core_session_t *session
goto error; goto error;
} }
if (profile->domain_name && profile->domain_name != profile->name) { if (profile->domain_name && strcmp(profile->domain_name, profile->name)) {
profile_name = profile->domain_name; profile_name = profile->domain_name;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论