mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
Issue 439: be more lax and don't look for END
git-svn-id: https://zxing.googlecode.com/svn/trunk@1416 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
7cceeec2f8
commit
51970aa020
|
@ -38,10 +38,6 @@ final class VEventResultParser extends ResultParser {
|
||||||
if (vEventStart < 0) {
|
if (vEventStart < 0) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
int vEventEnd = rawText.indexOf("END:VEVENT");
|
|
||||||
if (vEventEnd < 0) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
String summary = VCardResultParser.matchSingleVCardPrefixedField("SUMMARY", rawText, true);
|
String summary = VCardResultParser.matchSingleVCardPrefixedField("SUMMARY", rawText, true);
|
||||||
String start = VCardResultParser.matchSingleVCardPrefixedField("DTSTART", rawText, true);
|
String start = VCardResultParser.matchSingleVCardPrefixedField("DTSTART", rawText, true);
|
||||||
|
|
Loading…
Reference in a new issue