mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-30 09:49:26 +00:00
Fixed issue with find_friend_by_address if address has a gruu
This commit is contained in:
parent
6f8e2f5c2b
commit
78f40ae222
1 changed files with 1 additions and 1 deletions
|
|
@ -766,7 +766,7 @@ void linphone_friend_list_synchronize_friends_from_server(LinphoneFriendList *li
|
|||
LinphoneFriend * linphone_friend_list_find_friend_by_address(const LinphoneFriendList *list, const LinphoneAddress *address) {
|
||||
LinphoneAddress *clean_addr = linphone_address_clone(address);
|
||||
LinphoneFriend *lf;
|
||||
if (linphone_address_has_param(clean_addr, "gr")) {
|
||||
if (linphone_address_has_uri_param(clean_addr, "gr")) {
|
||||
linphone_address_remove_uri_param(clean_addr, "gr");
|
||||
}
|
||||
char *uri = linphone_address_as_string_uri_only(clean_addr);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue