1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-08-13 16:53:51 -04:00

Caldav: fix regression on iCal calendar color change

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@603 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2009-06-24 23:58:06 +00:00
parent a919bf7354
commit fc31316c14

View File

@ -227,6 +227,8 @@ public class CaldavConnection extends AbstractConnection {
patchCalendar(request);
} else if (request.isReport()) {
reportEvents(request);
} else {
sendUnsupported(request);
}
// event request
} else if (request.isPathLength(depth + 2)) {
@ -834,7 +836,7 @@ public class CaldavConnection extends AbstractConnection {
}
public boolean isPropPatch() {
return "PROPFIND".equals(command);
return "PROPPATCH".equals(command);
}
public boolean isReport() {