-
Notifications
You must be signed in to change notification settings - Fork 138
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
parser._handleContentLine() parsing including ^ in the parameter value
Prior this change the property ATTENDEE=CN="Ж 4 <>'^':":mailto:[email protected] is read as: jCal: [ 'attendee', { cn: `Ж 4 <>'":` }, 'cal-address', '":mailto:[email protected]' ] The value starts with quote, which is wrong.
- Loading branch information
1 parent
5f61c41
commit 560cff3
Showing
3 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ ATTENDEE;CN="Foo, Bar":mailto:foo3@bar | |
ATTENDEE;CN="Foo; Bar":mailto:foo4@bar | ||
ATTENDEE;DELEGATED-TO="mailto:foo7@bar";CN="Foo, Bar":mailto:foo5@bar | ||
ATTENDEE;DELEGATED-TO="mailto:foo7@bar";CN="Foo; Bar":mailto:foo6@bar | ||
ATTENDEE;CN="^^Ж 4 <>\'^'^n:":mailto:foo9@bar | ||
ATTENDEE;ROLE="REQ-PARTICIPANT;foo";DELEGATED-FROM="mailto:[email protected]";PAR | ||
TSTAT=ACCEPTED;RSVP=TRUE:mailto:[email protected] | ||
ATTENDEE;CN=X\:mailto:[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters