1
0
mirror of https://github.com/moparisthebest/davmail synced 2025-02-28 09:21:49 -05:00

Caldav: Fix 3420240, retrieve description from tasks over Dav

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1816 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2011-10-11 21:59:18 +00:00
parent ca9308e059
commit 8f43693ef5

View File

@ -1445,6 +1445,7 @@ public class DavExchangeSession extends ExchangeSession {
}
vEvent.setPropertyValue("UID", uid);
vEvent.setPropertyValue("SUMMARY", getPropertyIfExists(davPropertySet, "subject"));
vEvent.setPropertyValue("DESCRIPTION", getPropertyIfExists(davPropertySet, "description"));
vEvent.setPropertyValue("PRIORITY", convertPriorityFromExchange(getPropertyIfExists(davPropertySet, "importance")));
vEvent.setPropertyValue("CATEGORIES", getPropertyIfExists(davPropertySet, "keywords"));
@ -1520,7 +1521,6 @@ public class DavExchangeSession extends ExchangeSession {
}
}
vEvent.setPropertyValue("DESCRIPTION", getPropertyIfExists(davPropertySet, "description"));
vEvent.setPropertyValue("X-MICROSOFT-CDO-ALLDAYEVENT",
"1".equals(getPropertyIfExists(davPropertySet, "alldayevent")) ? "TRUE" : "FALSE");
vEvent.setPropertyValue("X-MICROSOFT-CDO-BUSYSTATUS", getPropertyIfExists(davPropertySet, "busystatus"));