Caldav: do not request additional properties for MeetingCancellation and MeetingResponse

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@2298 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2014-06-28 16:12:35 +00:00
parent 06d934a464
commit 09c445fff8
1 changed files with 3 additions and 1 deletions

View File

@ -1749,7 +1749,9 @@ public class EwsExchangeSession extends ExchangeSession {
getItemMethod.addAdditionalProperty(Field.get("datecompleted"));
getItemMethod.addAdditionalProperty(Field.get("keywords"));
} else if (!"Message".equals(type)) {
} else if (!"Message".equals(type)
&& !"MeetingCancellation".equals(type)
&& !"MeetingResponse".equals(type)) {
getItemMethod = new GetItemMethod(BaseShape.ID_ONLY, itemId, true);
getItemMethod.addAdditionalProperty(Field.get("reminderset"));
getItemMethod.addAdditionalProperty(Field.get("calendaruid"));