feat: Typing notifications in simplified sliding sync

What's missing? Being able to use separate rooms & lists for typing
indicators.
At the moment, we use the same ones as we use for the timeline, as
todo_rooms is quite intertwined. We need to disentangle this to get that
functionality, although I'm not sure if clients use it.
This commit is contained in:
Jade Ellis
2025-05-26 17:01:26 +01:00
committed by Ginger
parent a4f2b55a8a
commit f0f10f8f3e
3 changed files with 78 additions and 8 deletions
+1 -1
View File
@@ -370,7 +370,7 @@ pub(super) async fn load_joined_room(
let typings = services
.rooms
.typing
.typings_all(room_id, sender_user)
.typings_event_for_user(room_id, sender_user)
.await?;
Ok(vec![serde_json::from_str(&serde_json::to_string(&typings)?)?])