mirror of
https://github.com/moparisthebest/davmail
synced 2024-11-15 13:55:09 -05: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:
parent
a919bf7354
commit
fc31316c14
@ -227,6 +227,8 @@ public class CaldavConnection extends AbstractConnection {
|
|||||||
patchCalendar(request);
|
patchCalendar(request);
|
||||||
} else if (request.isReport()) {
|
} else if (request.isReport()) {
|
||||||
reportEvents(request);
|
reportEvents(request);
|
||||||
|
} else {
|
||||||
|
sendUnsupported(request);
|
||||||
}
|
}
|
||||||
// event request
|
// event request
|
||||||
} else if (request.isPathLength(depth + 2)) {
|
} else if (request.isPathLength(depth + 2)) {
|
||||||
@ -834,7 +836,7 @@ public class CaldavConnection extends AbstractConnection {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean isPropPatch() {
|
public boolean isPropPatch() {
|
||||||
return "PROPFIND".equals(command);
|
return "PROPPATCH".equals(command);
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isReport() {
|
public boolean isReport() {
|
||||||
|
Loading…
Reference in New Issue
Block a user