Updated liblinphone to fix app crashing at start due to too old Android version on device

This commit is contained in:
Sylvain Berfini 2017-11-29 11:33:06 +01:00
parent 549c85b662
commit 4f51ff8145
2 changed files with 2 additions and 6 deletions

View file

@ -523,11 +523,7 @@ public final class LinphoneService extends Service {
}
Call call = LinphoneManager.getLc().getCalls()[0];
String userName = call.getRemoteAddress().getUsername();
String domain = call.getRemoteAddress().getDomain();
String displayName = call.getRemoteAddress().getDisplayName();
Address address = Factory.instance().createAddress(userName + "@" + domain);
address.setDisplayName(displayName);
Address address = call.getRemoteAddress();
LinphoneContact contact = ContactsManager.getInstance().findContactFromAddress(address);
Uri pictureUri = contact != null ? contact.getPhotoUri() : null;

@ -1 +1 @@
Subproject commit 447076eadcd364815cc105578676d5579b358aa0
Subproject commit bed2dbf6b07843246587c39b0e2e880ba8640da6