mirror of
https://github.com/moparisthebest/davmail
synced 2024-11-15 13:55:09 -05:00
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:
parent
06d934a464
commit
09c445fff8
@ -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…
Reference in New Issue
Block a user