You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here I got in debug double "/" before uid as getPath() returns also "/" in the end.
By this reason CalDavCalendarCollection#removeCalendar(String) doesn't work for me.
Probably should be: DeleteMethod deleteMethod = new DeleteMethod(getPath() + uid + ".ics");
Please check.
The text was updated successfully, but these errors were encountered:
Hello,
https://github.com/ical4j/ical4j-connector/blob/master/src/main/java/net/fortuna/ical4j/connector/dav/CalDavCalendarCollection.java#L510
DeleteMethod deleteMethod = new DeleteMethod(getPath() + "/" + uid + ".ics");
Here I got in debug double "/" before uid as getPath() returns also "/" in the end.
By this reason CalDavCalendarCollection#removeCalendar(String) doesn't work for me.
Probably should be:
DeleteMethod deleteMethod = new DeleteMethod(getPath() + uid + ".ics");
Please check.
The text was updated successfully, but these errors were encountered: