Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit 28c09a8

Browse files
committed
[client] Fix observed data ID generation
1 parent 7fbf997 commit 28c09a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pycti/entities/opencti_observed_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def generate_id(object_ids):
216216
data = {"objects": object_ids}
217217
data = canonicalize(data, utf8=False)
218218
id = str(uuid.uuid5(uuid.UUID("00abedb4-aa42-466c-9c01-fed23315a9b7"), data))
219-
return "observed-datae--" + id
219+
return "observed-data--" + id
220220

221221
"""
222222
List ObservedData objects

0 commit comments

Comments
 (0)