Updated liblinphone to fix app crashing at start due to too old Android version on device
This commit is contained in:
parent
549c85b662
commit
4f51ff8145
2 changed files with 2 additions and 6 deletions
|
@ -523,11 +523,7 @@ public final class LinphoneService extends Service {
|
||||||
}
|
}
|
||||||
|
|
||||||
Call call = LinphoneManager.getLc().getCalls()[0];
|
Call call = LinphoneManager.getLc().getCalls()[0];
|
||||||
String userName = call.getRemoteAddress().getUsername();
|
Address address = call.getRemoteAddress();
|
||||||
String domain = call.getRemoteAddress().getDomain();
|
|
||||||
String displayName = call.getRemoteAddress().getDisplayName();
|
|
||||||
Address address = Factory.instance().createAddress(userName + "@" + domain);
|
|
||||||
address.setDisplayName(displayName);
|
|
||||||
|
|
||||||
LinphoneContact contact = ContactsManager.getInstance().findContactFromAddress(address);
|
LinphoneContact contact = ContactsManager.getInstance().findContactFromAddress(address);
|
||||||
Uri pictureUri = contact != null ? contact.getPhotoUri() : null;
|
Uri pictureUri = contact != null ? contact.getPhotoUri() : null;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 447076eadcd364815cc105578676d5579b358aa0
|
Subproject commit bed2dbf6b07843246587c39b0e2e880ba8640da6
|
Loading…
Reference in a new issue