mirror of
https://github.com/KnugiHK/WhatsApp-Chat-Exporter.git
synced 2026-04-25 15:31:38 +00:00
Fetch sender_timestamp for future use
WhatsApp doesn't show when a reaction was made, and I don't want to mess with a popup in the HTML yet. Let’s just fetch the data for now. It might come in handy later. Credit to @tlcameron3 from #79
This commit is contained in:
@@ -517,7 +517,8 @@ def _get_reactions(db, data):
|
|||||||
message_add_on_reaction.reaction,
|
message_add_on_reaction.reaction,
|
||||||
message_add_on.from_me,
|
message_add_on.from_me,
|
||||||
jid.raw_string as sender_jid_raw,
|
jid.raw_string as sender_jid_raw,
|
||||||
chat_jid.raw_string as chat_jid_raw
|
chat_jid.raw_string as chat_jid_raw,
|
||||||
|
message_add_on_reaction.sender_timestamp
|
||||||
FROM message_add_on
|
FROM message_add_on
|
||||||
INNER JOIN message_add_on_reaction
|
INNER JOIN message_add_on_reaction
|
||||||
ON message_add_on._id = message_add_on_reaction.message_add_on_row_id
|
ON message_add_on._id = message_add_on_reaction.message_add_on_row_id
|
||||||
@@ -540,6 +541,7 @@ def _get_reactions(db, data):
|
|||||||
parent_id = row["parent_message_row_id"]
|
parent_id = row["parent_message_row_id"]
|
||||||
reaction = row["reaction"]
|
reaction = row["reaction"]
|
||||||
chat_id = row["chat_jid_raw"]
|
chat_id = row["chat_jid_raw"]
|
||||||
|
_react_timestamp = row["sender_timestamp"]
|
||||||
|
|
||||||
if chat_id and chat_id in data:
|
if chat_id and chat_id in data:
|
||||||
chat = data[chat_id]
|
chat = data[chat_id]
|
||||||
|
|||||||
Reference in New Issue
Block a user