mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 03:18:06 +00:00
Fixed issue when parsing SIP URI from native contact due to international prefix being applied
This commit is contained in:
parent
2b756c5aec
commit
0d7f4d7c8d
1 changed files with 1 additions and 1 deletions
|
|
@ -242,7 +242,7 @@ class ContactLoader : LoaderManager.LoaderCallbacks<Cursor> {
|
|||
)
|
||||
)
|
||||
if (sipAddress != null) {
|
||||
val address = core.interpretUrl(sipAddress, true)
|
||||
val address = core.interpretUrl(sipAddress, false)
|
||||
if (address != null &&
|
||||
friendsAddresses.find {
|
||||
it.weakEqual(address)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue