fix: not sending enough state on join

This commit is contained in:
Timo Kösters 2022-10-30 21:23:10 +01:00
parent 5d691f405e
commit 0cf6545116
No known key found for this signature in database
GPG key ID: 24DA7517711A2BA4
3 changed files with 29 additions and 28 deletions

View file

@ -22,10 +22,7 @@ impl Service {
}
/// Makes sure that typing events with old timestamps get removed.
fn typings_maintain(
&self,
room_id: &RoomId,
) -> Result<()> {
fn typings_maintain(&self, room_id: &RoomId) -> Result<()> {
self.db.typings_maintain(room_id)
}