Bug #91570 --> be sure to show forwarded apple double attachments in the message pane.

r=ducarroz, sr=sspitzer
This commit is contained in:
mscott%netscape.com 2001-07-20 22:03:52 +00:00
Родитель a1b17e0243
Коммит 7c4585f65f
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -323,12 +323,11 @@ BuildAttachmentList(MimeObject *aChild, nsMsgAttachmentData *aAttachData,
// okay, if the current recursive call only wants us to list external body attachments
// then kick out of this method if we are an inlined part and our child class isn't an
// external body!
// external body or an apple double attachment!
if (addExternalBodiesOnly && !mime_typep((MimeObject *)child, (MimeObjectClass *)&mimeExternalObjectClass) )
if (addExternalBodiesOnly && !mime_typep((MimeObject *)child, (MimeObjectClass *)&mimeExternalObjectClass) && !isAnAppleDoublePart )
return NS_OK;
if (!part)
return NS_ERROR_OUT_OF_MEMORY;