mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-13 08:26:15 +00:00
do not display column with id of artifact in tag in results table
This commit is contained in:
parent
f2ed498ae5
commit
e9a9eeab6b
@ -124,7 +124,10 @@ public class BlackboardArtifactNode extends DisplayableItemNode {
|
|||||||
try {
|
try {
|
||||||
for (BlackboardAttribute attribute : artifact.getAttributes()) {
|
for (BlackboardAttribute attribute : artifact.getAttributes()) {
|
||||||
final int attributeTypeID= attribute.getAttributeTypeID();
|
final int attributeTypeID= attribute.getAttributeTypeID();
|
||||||
if (attributeTypeID == ATTRIBUTE_TYPE.TSK_PATH_ID.getTypeID()) {
|
//skip some internal attributes that user shouldn't see
|
||||||
|
if (attributeTypeID == ATTRIBUTE_TYPE.TSK_PATH_ID.getTypeID()
|
||||||
|
|| attributeTypeID == ATTRIBUTE_TYPE.TSK_TAGGED_ARTIFACT.getTypeID())
|
||||||
|
{
|
||||||
continue;
|
continue;
|
||||||
} else {
|
} else {
|
||||||
switch (attribute.getValueType()) {
|
switch (attribute.getValueType()) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user