I'm using ics to build an ical event. I pass the ical string to Sabre which is a WebDAV server.
Sabre gives the following error:
A calendar object on a CalDAV server MUST NOT have a METHOD property.
And that is caused by this line in the generated ics: METHOD:PUBLISH
When I try to pass method: null to createEvent it complains method cannot be null even though this online validator says my ics is valid without it.
I'm using
icsto build an ical event. I pass the ical string to Sabre which is a WebDAV server.Sabre gives the following error:
And that is caused by this line in the generated ics:
METHOD:PUBLISHWhen I try to pass
method: nulltocreateEventit complains method cannot be null even though this online validator says my ics is valid without it.