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
I have a calender with Parameters as sumamr, description and so on. In this case, the event parameters are not strings, they are objects.
Ical URL: https://abfuhrtermine.awp-paf.de/WasteManagementPfaffenhofen/WasteManagementServiceServlet?ApplicationName=Calendar&SubmitAction=sync&StandortID=149316001&AboID=185329&Fra=RM;B;P;S
Example vevent:
BEGIN:VEVENT DTSTART;VALUE=DATE:20210721 DTEND;VALUE=DATE:20210722 TRANSP:TRANSPARENT LOCATION;LANGUAGE=de:Joseph-Fraunhofer-Str. 10, 85276 Pfaffenhofen a.d.Ilm UID:[email protected] DTSTAMP:20210718T091751Z DESCRIPTION;LANGUAGE=de:Bitte stellen Sie die Behälter bis 6:00 Uhr zur Abholung bereit. SUMMARY;LANGUAGE=de:Restmuell PRIORITY:9 CLASS:PUBLIC URL:www.awp-paf.de STATUS:CONFIRMED END:VEVENT
The ical.js creates at line 75 (https://github.com/jens-maus/node-ical/blob/master/ical.js#L75) the following object for example for summary:
{ params: { LANGUAGE: 'de' }, val: 'Restmuell ' }
This does not match with the type declaration string.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have a calender with Parameters as sumamr, description and so on.
In this case, the event parameters are not strings, they are objects.
Ical URL:
https://abfuhrtermine.awp-paf.de/WasteManagementPfaffenhofen/WasteManagementServiceServlet?ApplicationName=Calendar&SubmitAction=sync&StandortID=149316001&AboID=185329&Fra=RM;B;P;S
Example vevent:
The ical.js creates at line 75 (https://github.com/jens-maus/node-ical/blob/master/ical.js#L75) the following object for example for summary:
This does not match with the type declaration string.
The text was updated successfully, but these errors were encountered: