Skip to content

Commit

Permalink
sepinf-inc#2286: save memory not populating seenAttachsPerId when ign…
Browse files Browse the repository at this point in the history
…oreItemTree is set
  • Loading branch information
aberenguel committed Aug 22, 2024
1 parent b24af91 commit 262c86f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ else if (item != null && !value.isEmpty()) {
} else if ("Email".equals(type)) { //$NON-NLS-1$
createEmailPreview(item);

} else if ("Attachment".equals(type)) { //$NON-NLS-1$
} else if ("Attachment".equals(type) && ignoreItemTree == null) { //$NON-NLS-1$
boolean wasFileSeen = handleAttachment(item);
IItem parentItem = itemSeq.get(itemSeq.size() - 1);
if (parentItem.getMediaType().equals(MediaTypes.UFED_EMAIL_MIME)) // $NON-NLS-1$
Expand Down

0 comments on commit 262c86f

Please sign in to comment.