Fix bug from roomuserid_knockedcount vs. roomid_knockedcount.

The use of "count" instead of "sequence" leads to confusion with
i.e. counting the elements of a set e.g. Iterator::count().

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-07-25 13:15:42 +00:00
parent 7bdd4065c8
commit 22ef704ac6
3 changed files with 29 additions and 12 deletions

View File

@@ -198,7 +198,7 @@ pub async fn update_joined_count(&self, room_id: &RoomId) {
.roomid_invitedcount
.raw_put(room_id, invitedcount);
self.db
.roomuserid_knockedcount
.roomid_knockedcount
.raw_put(room_id, knockedcount);
self.room_servers(room_id)