Caldav: do not send freebusy info if attendee is unknown

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@583 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2009-06-10 16:46:58 +00:00
parent 6d26c950d9
commit 9cd2e14bbc
1 changed files with 5 additions and 1 deletions

View File

@ -2051,7 +2051,11 @@ public class ExchangeSession {
getMethod.releaseConnection();
}
return freeBusy;
if (freeBusy != null && freeBusy.knownAttendee) {
return freeBusy;
} else {
return null;
}
}
/**