EWS: fix folder id regression

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1151 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-07-07 13:19:16 +00:00
parent 4ba0df7ae1
commit 602b57a8f0
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ public class FolderId extends Option {
* @param item response item
*/
public FolderId(EWSMethod.Item item) {
this(item.get("ItemId"),item.get("ChangeKey"));
this(item.get("FolderId"),item.get("ChangeKey"));
}