Rejoin room over federation if we are not participating in it; do not include invited users in participating servers calculation
This commit is contained in:
parent
aca6218c0a
commit
3b0aa23fdf
2 changed files with 7 additions and 4 deletions
|
@ -108,8 +108,7 @@ impl service::rooms::state_cache::Data for KeyValueDatabase {
|
|||
joinedcount += 1;
|
||||
}
|
||||
|
||||
for invited in self.room_members_invited(room_id).filter_map(|r| r.ok()) {
|
||||
joined_servers.insert(invited.server_name().to_owned());
|
||||
for _invited in self.room_members_invited(room_id).filter_map(|r| r.ok()) {
|
||||
invitedcount += 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue