EWS: format datereceived date

git-svn-id: http://svn.code.sf.net/p/davmail/code/trunk@1172 3d1905a2-6b24-0410-a738-b14d5a86fcbd
This commit is contained in:
mguessan 2010-07-12 12:40:48 +00:00
parent 6a6bb21450
commit c589af80ab
1 changed files with 1 additions and 1 deletions

View File

@ -675,7 +675,7 @@ public class EwsExchangeSession extends ExchangeSession {
for (String attributeName : CONTACT_ATTRIBUTES) {
String value = response.get(Field.get(attributeName).getResponseName());
if (value != null) {
if ("bday".equals(attributeName) || "lastmodified".equals(attributeName)) {
if ("bday".equals(attributeName) || "lastmodified".equals(attributeName) || "datereceived".equals(attributeName)) {
value = convertDate(value);
}
put(attributeName, value);