From f34bdcebfc11139548d451cc34351daba44e9fa2 Mon Sep 17 00:00:00 2001 From: Kelly Kelly <kelly@basistech.com> Date: Mon, 7 Feb 2022 12:25:17 -0500 Subject: [PATCH] Make sure the new artifact gets pushed --- .../org/sleuthkit/autopsy/recentactivity/ExtractRegistry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractRegistry.java b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractRegistry.java index 09f57c627c..ec9b36db19 100644 --- a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractRegistry.java +++ b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractRegistry.java @@ -962,7 +962,7 @@ private boolean parseAutopsyPluginOutput(String regFilePath, AbstractFile regFil Collection<BlackboardAttribute> bbattributes = new ArrayList<>(); bbattributes.add(new BlackboardAttribute(ATTRIBUTE_TYPE.TSK_PROG_NAME, parentModuleName, "Windows")); if (results.isEmpty()) { - newArtifacts.add(createArtifactWithAttributes(BlackboardArtifact.Type.TSK_OS_INFO, regFile, bbattributes)); + postArtifact(createArtifactWithAttributes(BlackboardArtifact.Type.TSK_OS_INFO, regFile, bbattributes)); } else if(results.get(0).getAttribute(BlackboardAttribute.Type.TSK_PROG_NAME) == null){ results.get(0).addAttributes(bbattributes); } -- GitLab