Fix read receipts falling from sky (#10576)

This commit is contained in:
Michael Weimann 2023-04-12 13:50:48 +02:00 committed by GitHub
parent d2066ba5f5
commit 7cd86231b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -885,10 +885,10 @@ export default class MessagePanel extends React.Component<IProps, IState> {
// Record these receipts along with their last shown event ID for // Record these receipts along with their last shown event ID for
// each associated user ID. // each associated user ID.
for (const receipt of newReceipts) { for (const receipt of newReceipts) {
receiptsByUserId[receipt.userId] = { receiptsByUserId.set(receipt.userId, {
lastShownEventId, lastShownEventId,
receipt, receipt,
}; });
} }
} }