1
0
mirror of https://github.com/moparisthebest/davmail synced 2024-12-13 11:12:22 -05:00

EWS: Fix for some Exchange 2010 ItemIds different length

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1712 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2011-06-20 22:00:18 +00:00
parent dface8d205
commit 76c23c3437

View File

@ -1956,7 +1956,7 @@ public class EwsExchangeSession extends ExchangeSession {
}
protected static boolean isItemId(String itemName) {
return itemName.length() == 156;
return itemName.length() == 156 || itemName.length() == 152;
}
}