Start sending stable m.marked_unread events (#28478)

* Start sending stable `m.marked_unread` events

* Update tests
This commit is contained in:
Tulir Asokan
2024-11-18 11:25:36 +01:00
committed by GitHub
parent abf6d58b7b
commit 72a2773629
5 changed files with 7 additions and 10 deletions

View File

@@ -338,7 +338,7 @@ describe("RoomViewStore", function () {
});
dis.dispatch({ action: Action.ViewRoom, room_id: roomId });
await untilDispatch(Action.ActiveRoomChanged, dis);
expect(mockClient.setRoomAccountData).toHaveBeenCalledWith(roomId, "com.famedly.marked_unread", {
expect(mockClient.setRoomAccountData).toHaveBeenCalledWith(roomId, "m.marked_unread", {
unread: false,
});
});