Tracks send state for edited messages
This commit is contained in:
parent
860bec5534
commit
b2319b43d6
8 changed files with 391 additions and 55 deletions
|
@ -94,6 +94,7 @@ export async function handleEditMessage(
|
|||
bodyRanges: mainMessage.bodyRanges,
|
||||
preview: mainMessage.preview,
|
||||
quote: mainMessage.quote,
|
||||
sendStateByConversationId: { ...mainMessage.sendStateByConversationId },
|
||||
timestamp: mainMessage.timestamp,
|
||||
},
|
||||
];
|
||||
|
@ -224,6 +225,8 @@ export async function handleEditMessage(
|
|||
body: upgradedEditedMessageData.body,
|
||||
bodyRanges: upgradedEditedMessageData.bodyRanges,
|
||||
preview: nextEditedMessagePreview,
|
||||
sendStateByConversationId:
|
||||
upgradedEditedMessageData.sendStateByConversationId,
|
||||
timestamp: upgradedEditedMessageData.timestamp,
|
||||
quote: nextEditedMessageQuote,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue