mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 10:17:41 +00:00
Remove file size check from RunIngestModulesAction
This commit is contained in:
parent
2b36a5141a
commit
5eb397476a
@ -144,7 +144,7 @@ public final class RunIngestModulesAction extends AbstractAction {
|
||||
List<Content> children = parentFile.getChildren();
|
||||
List<AbstractFile> files = new ArrayList<>();
|
||||
for (Content child : children) {
|
||||
if (child instanceof AbstractFile && child.getSize() > 0) {
|
||||
if (child instanceof AbstractFile) {
|
||||
files.add((AbstractFile) child);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user