feat: send receipt with type ReadPrivate by default
This commit is contained in:
parent
15fc4aa50f
commit
32585f45c3
1 changed files with 1 additions and 1 deletions
|
@ -22,5 +22,5 @@ export async function markAsRead(roomId) {
|
||||||
const latestEvent = getLatestValidEvent();
|
const latestEvent = getLatestValidEvent();
|
||||||
if (latestEvent === null) return;
|
if (latestEvent === null) return;
|
||||||
|
|
||||||
await mx.sendReadReceipt(latestEvent);
|
await mx.sendReadReceipt(latestEvent, 'm.read.private');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue