We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
""" BEGIN:VCALENDAR\r\n VERSION:2.0\r\n PRODID:User Events\r\n BEGIN:VEVENT\r\n UID:16\r\n DTSTART:20170928T155500Z\r\n SEQUENCE:0\r\n TRANSP:OPAQUE\r\n DTEND:20170928T155500Z\r\n URL:Health & Well being\r\n LOCATION:153\r\n SUMMARY:Weekly event\r\n CLASS:PUBLIC\r\n DESCRIPTION:Gsfh\r\n RRULE:FREQ=WEEKLY;INTERVAL=1;UNTIL=20171019T000000Z;BYDAY="TH,TH"\r\n CATEGORIES:115\r\n DTSTAMP:20170928T164855Z\r\n END:VEVENT\r\n END:VCALENDAR """
This causes Ical to be wrong as It should be BYDAY=TH,TH, without the quotes. how can that be solved?
The text was updated successfully, but these errors were encountered:
@markuspoerschke i am also getting the same issue. "TH,TH" shouldn't be escaped with "
"TH,TH"
"
Sorry, something went wrong.
Properly escape BY* rules #105
751b2a9
Fix was released with 0.14.0
0.14.0
@markuspoerschke I think you can close this issue
markuspoerschke
No branches or pull requests
"""
BEGIN:VCALENDAR\r\n
VERSION:2.0\r\n
PRODID:User Events\r\n
BEGIN:VEVENT\r\n
UID:16\r\n
DTSTART:20170928T155500Z\r\n
SEQUENCE:0\r\n
TRANSP:OPAQUE\r\n
DTEND:20170928T155500Z\r\n
URL:Health & Well being\r\n
LOCATION:153\r\n
SUMMARY:Weekly event\r\n
CLASS:PUBLIC\r\n
DESCRIPTION:Gsfh\r\n
RRULE:FREQ=WEEKLY;INTERVAL=1;UNTIL=20171019T000000Z;BYDAY="TH,TH"\r\n
CATEGORIES:115\r\n
DTSTAMP:20170928T164855Z\r\n
END:VEVENT\r\n
END:VCALENDAR
"""
This causes Ical to be wrong as It should be BYDAY=TH,TH, without the quotes. how can that be solved?
The text was updated successfully, but these errors were encountered: