From 6c43cb9888e0c42aa5e04530055cd42533a7a18f Mon Sep 17 00:00:00 2001
From: Greg DiCristofaro <gregd@basistech.com>
Date: Fri, 25 Feb 2022 09:50:19 -0500
Subject: [PATCH] extract ie fix

---
 .../autopsy/recentactivity/ExtractIE.java          | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractIE.java b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractIE.java
index 370504ee95..8630ecf09b 100644
--- a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractIE.java
+++ b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractIE.java
@@ -155,14 +155,12 @@ private void getBookmark() {
             String domain = extractDomain(url);
 
             try {
-                Collection<BlackboardAttribute> bbattributes = createHistoryAttributes(
-                    url, 
-                    datetime, 
-                    null, 
-                    name, 
-                    NbBundle.getMessage(this.getClass(), "ExtractIE.moduleName.text"), 
-                    domain, 
-                    null);
+                Collection<BlackboardAttribute> bbattributes = createBookmarkAttributes(
+                        url, 
+                        name,
+                        datetime, 
+                        NbBundle.getMessage(this.getClass(), "ExtractIE.moduleName.text"), 
+                        domain);
                             
                 bbartifacts.add(createArtifactWithAttributes(BlackboardArtifact.Type.TSK_WEB_BOOKMARK, fav, bbattributes));
             } catch (TskCoreException ex) {
-- 
GitLab