forked from github/cordova-android
CB-1481: ContactName - name.formatted returns with a trailing white space
This commit is contained in:
parent
0f42c65792
commit
ac14b0d73b
@ -792,10 +792,10 @@ public class ContactAccessorSdk5 extends ContactAccessor {
|
|||||||
formatted.append(middleName + " ");
|
formatted.append(middleName + " ");
|
||||||
}
|
}
|
||||||
if (familyName != null) {
|
if (familyName != null) {
|
||||||
formatted.append(familyName + " ");
|
formatted.append(familyName);
|
||||||
}
|
}
|
||||||
if (honorificSuffix != null) {
|
if (honorificSuffix != null) {
|
||||||
formatted.append(honorificSuffix + " ");
|
formatted.append(" " + honorificSuffix);
|
||||||
}
|
}
|
||||||
|
|
||||||
contactName.put("familyName", familyName);
|
contactName.put("familyName", familyName);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user