diff --git a/ChangeLog b/ChangeLog index c99fe57dc..b07b4595d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2011-10-24 Wolfgang Sourdeau + * OpenChange/MAPIStoreAttachment.m + (-getProperty:withTag:inMemCtx:): fallback on super's + implementation to benefit from the property getters methods. + * OpenChange/MAPIStoreContactsMessage.m (-getPrBody:inMemCtx:): if the attribute length is 0, return MAPISTORE_ERR_NOT_FOUND. (-_fetchAttachmentParts, -getPidLidHasPicture:inMemCtx:) diff --git a/OpenChange/MAPIStoreAttachment.m b/OpenChange/MAPIStoreAttachment.m index 4415a0564..04377d256 100644 --- a/OpenChange/MAPIStoreAttachment.m +++ b/OpenChange/MAPIStoreAttachment.m @@ -85,7 +85,7 @@ break; default: - rc = MAPISTORE_ERR_NOT_FOUND; + rc = [super getProperty: data withTag: propTag inMemCtx: memCtx]; } return rc;