1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-13 19:22:22 -05:00

Caldav: Added supported-calendar-component-set to calendar response

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@762 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2009-09-30 08:14:28 +00:00
parent 04135c9475
commit 98c52a5beb

View File

@ -376,6 +376,9 @@ public class CaldavConnection extends AbstractConnection {
if (request.hasProperty("calendar-description")) { if (request.hasProperty("calendar-description")) {
response.appendProperty("C:calendar-description", ""); response.appendProperty("C:calendar-description", "");
} }
if (request.hasProperty("supported-calendar-component-set")) {
response.appendProperty("C:supported-calendar-component-set", "<C:comp name=\"VEVENT\"/>");
}
response.endPropStatOK(); response.endPropStatOK();
response.endResponse(); response.endResponse();