mirror of
https://github.com/zxing/zxing.git
synced 2024-11-10 04:54:04 -08:00
Support multiple components in ORG
git-svn-id: https://zxing.googlecode.com/svn/trunk@2257 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
23ce7f4584
commit
8c924b470f
|
@ -63,7 +63,7 @@ public final class VCardResultParser extends ResultParser {
|
|||
List<List<String>> emails = matchVCardPrefixedField("EMAIL", rawText, true, false);
|
||||
List<String> note = matchSingleVCardPrefixedField("NOTE", rawText, false, false);
|
||||
List<List<String>> addresses = matchVCardPrefixedField("ADR", rawText, true, true);
|
||||
List<String> org = matchSingleVCardPrefixedField("ORG", rawText, true, false);
|
||||
List<String> org = matchSingleVCardPrefixedField("ORG", rawText, true, true);
|
||||
List<String> birthday = matchSingleVCardPrefixedField("BDAY", rawText, true, false);
|
||||
if (birthday != null && !isLikeVCardDate(birthday.get(0))) {
|
||||
birthday = null;
|
||||
|
|
Loading…
Reference in a new issue