diff --git a/Core/src/org/sleuthkit/autopsy/datamodel/Accounts.java b/Core/src/org/sleuthkit/autopsy/datamodel/Accounts.java index b30c831c29..ef03f0345f 100644 --- a/Core/src/org/sleuthkit/autopsy/datamodel/Accounts.java +++ b/Core/src/org/sleuthkit/autopsy/datamodel/Accounts.java @@ -907,7 +907,11 @@ public class Accounts extends Observable implements AutopsyVisitableItem { Action[] actions = super.getActions(context); ArrayList arrayList = new ArrayList<>(); arrayList.addAll(Arrays.asList(actions)); - + try { + arrayList.addAll(DataModelActionsFactory.getActions(Accounts.this.skCase.getContentById(fileKey.getObjID()), false)); + } catch (TskCoreException ex) { + LOGGER.log(Level.SEVERE, "Error gettung content by id", ex); + } arrayList.add(new ApproveAccounts(getLookup().lookupAll(BlackboardArtifact.class))); arrayList.add(new RejectAccounts(getLookup().lookupAll(BlackboardArtifact.class))); return arrayList.toArray(new Action[arrayList.size()]);