Skip to content
Snippets Groups Projects
Unverified Commit a2c74a49 authored by Richard Cordovano's avatar Richard Cordovano Committed by GitHub
Browse files

Merge pull request #6913 from markmckinnon/7524-check-to-see-if-prefetch-thirdparty-database-exists

7524-check-to-see-if-prefetch-thirdparty-database-exists
parents 9062afa6 64fc8bba
Branches
Tags
No related merge requests found
......@@ -120,7 +120,10 @@ void process(Content dataSource, IngestJobContext context, DataSourceIngestModul
try {
String tempDirPath = RAImageIngestModule.getRATempPath(Case.getCurrentCase(), dataSource.getName() + "-" + PREFETCH_DIR_NAME, ingestJobId);
parsePrefetchFiles(prefetchDumper, tempDirPath, modOutFile, modOutPath);
createAppExecArtifacts(modOutFile, dataSource);
File prefetchDatabase = new File(modOutFile);
if (prefetchDatabase.exists()) {
createAppExecArtifacts(modOutFile, dataSource);
}
} catch (IOException ex) {
logger.log(Level.SEVERE, "Error parsing prefetch files", ex); //NON-NLS
addErrorMessage(Bundle.ExtractPrefetch_errMsg_prefetchParsingFailed(Bundle.ExtractPrefetch_module_name()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment