Caldav: fix private events filter condition

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@996 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-04-12 08:55:47 +00:00
parent 0dc6a3547d
commit 9156bb8a60
1 changed files with 1 additions and 1 deletions

View File

@ -2601,7 +2601,7 @@ public class ExchangeSession {
}
String privateCondition = "";
if (!isSharedFolder(folderPath)) {
if (isSharedFolder(folderPath)) {
LOGGER.debug("Shared or public calendar: exclude private events");
privateCondition = " AND \"http://schemas.microsoft.com/exchange/sensitivity\" = 0\n";
}