fix: We will display galaxies with tags

pull/307/head
chrisr3d 2019-06-15 08:05:14 +02:00
parent f885b6c5e1
commit 1ac85a4879
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ class JoeParser():
if self.references: if self.references:
self.build_references() self.build_references()
event = json.loads(self.misp_event.to_json())['Event'] event = json.loads(self.misp_event.to_json())['Event']
self.results = {key: event[key] for key in ('Attribute', 'Object', 'Tag', 'Galaxy') if (key in event and event[key])} self.results = {key: event[key] for key in ('Attribute', 'Object', 'Tag') if (key in event and event[key])}
@staticmethod @staticmethod
def parse_timestamp(timestamp): def parse_timestamp(timestamp):