mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-12 16:06:15 +00:00
Merge pull request #6068 from APriestman/6612_chromeCacheAssociatedFiles
6612 Chrome cache - don't cache folders or files not in the cache folder
This commit is contained in:
commit
a19f332d9d
@ -556,7 +556,9 @@ final class ChromeCacheExtractor {
|
||||
|
||||
List<AbstractFile> effFiles = fileManager.findFiles(dataSource, "f_%", cachePath); //NON-NLS
|
||||
for (AbstractFile abstractFile : effFiles ) {
|
||||
this.externalFilesTable.put(cachePath + abstractFile.getName(), abstractFile);
|
||||
if (cachePath.equals(abstractFile.getParentPath()) && abstractFile.isFile()) {
|
||||
this.externalFilesTable.put(cachePath + abstractFile.getName(), abstractFile);
|
||||
}
|
||||
}
|
||||
}
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user