Fixing crash in detail history
This commit is contained in:
parent
f71eba53ab
commit
0f91e5bc21
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ public class HistoryDetailFragment extends Fragment implements OnClickListener {
|
||||||
} catch (LinphoneCoreException e) {
|
} catch (LinphoneCoreException e) {
|
||||||
Log.e(e);
|
Log.e(e);
|
||||||
}
|
}
|
||||||
if(addr != null && !addr.getDisplayName().equals("Dust Android"))
|
if (addr != null && addr.getDisplayName() != null)
|
||||||
LinphoneActivity.instance().displayContactsForEdition(addr.asStringUriOnly(), addr.getDisplayName());
|
LinphoneActivity.instance().displayContactsForEdition(addr.asStringUriOnly(), addr.getDisplayName());
|
||||||
else
|
else
|
||||||
LinphoneActivity.instance().displayContactsForEdition(uri);
|
LinphoneActivity.instance().displayContactsForEdition(uri);
|
||||||
|
|
Loading…
Reference in a new issue