From e0f70c5072e878424a66a5d67b1a34e70f945f85 Mon Sep 17 00:00:00 2001 From: terrtia Date: Wed, 8 Nov 2023 13:35:13 +0100 Subject: [PATCH] fix: [investigations] delete obj --- bin/lib/objects/abstract_subtype_object.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/lib/objects/abstract_subtype_object.py b/bin/lib/objects/abstract_subtype_object.py index fa0030da..9a8aaafc 100755 --- a/bin/lib/objects/abstract_subtype_object.py +++ b/bin/lib/objects/abstract_subtype_object.py @@ -89,6 +89,7 @@ class AbstractSubtypeObject(AbstractObject, ABC): if options is None: options = set() meta = {'id': self.id, + 'type': self.type, 'subtype': self.subtype, 'first_seen': self.get_first_seen(), 'last_seen': self.get_last_seen(),