ORG value is not unescaped when loading VCard
Brought to you by:
george_h
Hello,
the values from the ORG value in the VCard are not unescaped when parsing the VCard. This bug exists due a missing call to VCardUtils.unescapeString in VCardEngine.java line 1557.
The line should be:
orgType.setOrgName(VCardUtils.unescapeString(orgUnits[0]));
Yes, that's correct.
Committed to SVN. Thank you.