Caldav: Sunbird, ignore inbox folder url in REPORT

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@452 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2009-03-18 13:47:10 +00:00
parent 3e4ccc55d8
commit 018d30e51f
1 changed files with 2 additions and 0 deletions

View File

@ -451,6 +451,8 @@ public class CaldavConnection extends AbstractConnection {
String eventName = getEventFileNameFromPath(href);
if (eventName == null) {
notFound.add(href);
} else if ("inbox".equals(eventName)){
// Sunbird: just ignore
} else {
events.add(session.getEvent(path, eventName));
}