Browse Source

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
master
mguessan 9 years ago
parent
commit
09c445fff8
  1. 4
      src/java/davmail/exchange/ews/EwsExchangeSession.java

4
src/java/davmail/exchange/ews/EwsExchangeSession.java

@ -1749,7 +1749,9 @@ public class EwsExchangeSession extends ExchangeSession { @@ -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"));

Loading…
Cancel
Save