fix double call to core_terminate
fix use of numbers with #
This commit is contained in:
parent
2c9c607a45
commit
e334503b97
3 changed files with 3 additions and 3 deletions
|
@ -247,7 +247,7 @@ public final class LinphoneService extends Service implements LinphoneServiceLis
|
|||
String userName = call.getRemoteAddress().getUserName();
|
||||
String domain = call.getRemoteAddress().getDomain();
|
||||
String displayName = call.getRemoteAddress().getDisplayName();
|
||||
LinphoneAddress address = LinphoneCoreFactoryImpl.instance().createLinphoneAddress("sip:" + userName + "@" + domain);
|
||||
LinphoneAddress address = LinphoneCoreFactoryImpl.instance().createLinphoneAddress(userName,domain,null);
|
||||
address.setDisplayName(displayName);
|
||||
|
||||
Uri pictureUri = LinphoneUtils.findUriPictureOfContactAndSetDisplayName(address, getContentResolver());
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 359d16ff318a9fa729235253e8e295f3a8726db9
|
||||
Subproject commit 8bd2630b93b31f0a38fcfc37a5ccd2cb1d2147c2
|
|
@ -1 +1 @@
|
|||
Subproject commit edf037fa37b980cdba898d129163261bbec0fd3d
|
||||
Subproject commit 4a395bfb7280d1c8344e80f76876d2b9275c0fe5
|
Loading…
Reference in a new issue