Skip to content

Commit

Permalink
fix: wrong timestamps of message reactions
Browse files Browse the repository at this point in the history
  • Loading branch information
lxndrblz committed Jun 29, 2021
1 parent af7dc5d commit 761dce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Forensicsim_Parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def parse_messages(self, messages, helper, teams_leveldb_file_path):
# Add one reaction entry by per
for user in emotion['users']:
self.parse_reaction(message_id, thread_id, user["mri"], phone_number_from, message_text,
emotion['key'], int(user['time']), teams_leveldb_file_path)
emotion['key'], int(user['time']/1000), teams_leveldb_file_path)

message_attachments = MessageAttachments(file_attachments, url_attachments)
helper.addAttachments(artifact, message_attachments)
Expand Down

0 comments on commit 761dce4

Please sign in to comment.