Fixed crash...

This commit is contained in:
Sylvain Berfini 2018-09-12 15:53:48 +02:00
parent 9b8574caad
commit c9e15021ab

View file

@ -84,5 +84,5 @@ public class LinphoneNumberOrAddress implements Serializable, Comparable<Linphon
value = v; value = v;
} }
public String getNormalizedPhone() { return normalizedPhone; } public String getNormalizedPhone() { return normalizedPhone != null ? normalizedPhone : value; }
} }