mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-31 10:19:23 +00:00
Fix find auth info algorithm for multiples registrations with same username
This commit is contained in:
parent
263364ac7c
commit
68a23b44b0
1 changed files with 2 additions and 1 deletions
|
|
@ -298,7 +298,8 @@ const LinphoneAuthInfo *linphone_core_find_auth_info(LinphoneCore *lc, const cha
|
|||
if (ai==NULL && domain){
|
||||
ai=find_auth_info(lc,username,realm,domain);
|
||||
}
|
||||
} else if (domain != NULL) {
|
||||
}
|
||||
if (ai == NULL && domain != NULL) {
|
||||
ai=find_auth_info(lc,username,NULL,domain);
|
||||
}
|
||||
if (ai==NULL){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue