diff --git a/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractIE.java b/RecentActivity/src/org/sleuthkit/autopsy/recentactivity/ExtractIE.java
index 370504ee95d5a13a89b6daeee082835c655f6c2f..8630ecf09b4e118eb26b30b1366b0f4203600c2d 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) {