mirror of
https://github.com/apache/cordova-android.git
synced 2025-04-05 22:41:53 +08:00
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 + " ");
|
||||
}
|
||||
if (familyName != null) {
|
||||
formatted.append(familyName + " ");
|
||||
formatted.append(familyName);
|
||||
}
|
||||
if (honorificSuffix != null) {
|
||||
formatted.append(honorificSuffix + " ");
|
||||
formatted.append(" " + honorificSuffix);
|
||||
}
|
||||
|
||||
contactName.put("familyName", familyName);
|
||||
|
Loading…
x
Reference in New Issue
Block a user